diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
commit | 10308be19ef7fa44699562cc75946e7ea1fdf6b9 (patch) | |
tree | 4bc444c00a79e88105f2cfce5b6209994c413ca0 /kdeui/kauthicon.h | |
parent | 307136d8eef0ba133b78ceee8e901138d4c996a1 (diff) | |
download | tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.tar.gz tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/kauthicon.h')
-rw-r--r-- | kdeui/kauthicon.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kdeui/kauthicon.h b/kdeui/kauthicon.h index 398d1fcb0..0bfe0cc22 100644 --- a/kdeui/kauthicon.h +++ b/kdeui/kauthicon.h @@ -55,7 +55,7 @@ public: KAuthIcon(TQWidget *parent = 0, const char *name = 0); ~KAuthIcon(); - virtual TQSize tqsizeHint() const; + virtual TQSize sizeHint() const; /** * return the status of whatever is being monitored. */ @@ -66,7 +66,7 @@ public slots: * Re-implement this method if you want the icon to update itself * when something external has changed (i.e. a file on disk, uid/gid). */ - virtual void updatetqStatus() = 0; + virtual void updateStatus() = 0; signals: /** @@ -78,7 +78,7 @@ signals: void authChanged(bool authorized); protected: - TQHBoxLayout *tqlayout; + TQHBoxLayout *layout; TQLabel *lockBox; TQLabel *lockLabel; @@ -114,7 +114,7 @@ public: bool status() const { return root; } public slots: - void updatetqStatus(); + void updateStatus(); protected: bool root; @@ -149,7 +149,7 @@ public: * make the icon watch a new filename. * @param fileName the new file to monitor / display status for. */ - void setFileName(const TQString & fileName) { fi.setFile(fileName); updatetqStatus(); } + void setFileName(const TQString & fileName) { fi.setFile(fileName); updateStatus(); } /** * return the filename of the currently watched file. @@ -158,7 +158,7 @@ public: TQString fileName() const { return fi.fileName(); } public slots: - void updatetqStatus(); + void updateStatus(); protected: bool writable; |