~paulbrianstewart/ubuntu/oneiric/quassel/833751-String-Error-Fix

« back to all changes in this revision

Viewing changes to src/qtui/statusnotifieritem.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-08-25 09:10:56 UTC
  • mfrom: (1.1.41 upstream)
  • Revision ID: james.westby@ubuntu.com-20100825091056-k8u74za5n8z97f0d
Tags: 0.7~rc1-0ubuntu1
* New upstream RC release
* Add missing build-depends on libdbusmenu-qt-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
  QString iconName() const;
64
64
  QString attentionIconName() const;
65
65
  QString toolTipIconName() const;
 
66
  QString iconThemePath() const;
 
67
  QString menuObjectPath() const;
66
68
 
67
69
  virtual bool eventFilter(QObject *watched, QEvent *event);
68
70
 
85
87
  quint32 _lastNotificationsDBusId;
86
88
  QHash<uint, uint> _notificationsIdMap; ///< Maps our own notification ID to the D-Bus one
87
89
 
 
90
  QString _iconThemePath;
 
91
  QString _menuObjectPath;
 
92
 
88
93
  friend class StatusNotifierItemDBus;
89
94
};
90
95