summaryrefslogtreecommitdiffstats
path: root/kdeui/kauthicon.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 04:12:51 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 04:12:51 +0000
commit560378aaca1784ba19806a0414a32b20c744de39 (patch)
treece0dfd7c3febf2a1adc7603d1019a8be2083c415 /kdeui/kauthicon.h
parentd4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff)
downloadtdelibs-560378aaca1784ba19806a0414a32b20c744de39.tar.gz
tdelibs-560378aaca1784ba19806a0414a32b20c744de39.zip
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
NOTE: This will not compile with Qt4 (yet), however it does compile with Qt3 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211081 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/kauthicon.h')
-rw-r--r--kdeui/kauthicon.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kdeui/kauthicon.h b/kdeui/kauthicon.h
index 0bfe0cc22..398d1fcb0 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 sizeHint() const;
+ virtual TQSize tqsizeHint() 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 updateStatus() = 0;
+ virtual void updatetqStatus() = 0;
signals:
/**
@@ -78,7 +78,7 @@ signals:
void authChanged(bool authorized);
protected:
- TQHBoxLayout *layout;
+ TQHBoxLayout *tqlayout;
TQLabel *lockBox;
TQLabel *lockLabel;
@@ -114,7 +114,7 @@ public:
bool status() const { return root; }
public slots:
- void updateStatus();
+ void updatetqStatus();
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); updateStatus(); }
+ void setFileName(const TQString & fileName) { fi.setFile(fileName); updatetqStatus(); }
/**
* return the filename of the currently watched file.
@@ -158,7 +158,7 @@ public:
TQString fileName() const { return fi.fileName(); }
public slots:
- void updateStatus();
+ void updatetqStatus();
protected:
bool writable;