~ubuntu-branches/ubuntu/utopic/psi/utopic

« back to all changes in this revision

Viewing changes to src/libpsi/tools/mac_dock/mac_dock.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2010-02-19 09:37:12 UTC
  • mfrom: (6.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100219093712-e225xvm1wjcf1cgi
Tags: 0.14-2
* comment out only function which uses va_list to work around build
  problems on armel
* Set Standards-Version to 3.8.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef MACDOCK_H
 
2
#define MACDOCK_H
 
3
 
 
4
#include <qstring.h>
 
5
 
 
6
class MacDock
 
7
{
 
8
public:
 
9
        static void startBounce();
 
10
        static void stopBounce();
 
11
        static void overlay(const QString& text = QString::null);
 
12
 
 
13
private:
 
14
        static bool isBouncing;
 
15
        static bool overlayed;
 
16
};
 
17
 
 
18
#endif