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/kpanelapplet.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/kpanelapplet.h')
-rw-r--r-- | kdeui/kpanelapplet.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kdeui/kpanelapplet.h b/kdeui/kpanelapplet.h index 859906adb..7719c7b68 100644 --- a/kdeui/kpanelapplet.h +++ b/kdeui/kpanelapplet.h @@ -106,7 +106,7 @@ public: enum Type { Normal = 0, Stretch }; /** * This enum holds flags which can be ORed together to describe - * which items the context menu over the applet handle tqcontains. + * which items the context menu over the applet handle contains. */ // KDE4: Merge these with KPanelExtension's enums enum Action { About = 1, Help = 2, Preferences = 4, ReportBug = 8 }; @@ -224,22 +224,22 @@ public: /** * @internal **/ - void tqsetAlignment( Alignment a ); + void setAlignment( Alignment a ); signals: /** - * Emit this signal to make the panel retqlayout all applets, when + * Emit this signal to make the panel relayout all applets, when * you want to change your width (horizontal panel) or * height (vertical panel). * - * The panel is going to retqlayout all applets based on their + * The panel is going to relayout all applets based on their * widthForHeight(int height) (horizontal panel) or * heightForWidth(int width) (vertical panel). * * Please note that the panel may change the applet's location * if the new widthForHeight(int height) (horizontal panel) or * heightForWidth(int width) (vertical panel) does not fit into the - * current panel tqlayout. + * current panel layout. **/ void updateLayout(); @@ -308,9 +308,9 @@ protected: **/ Position position() const { return _position; } /** - * @return the applet's tqalignment. (top/left, center, or bottom/right) + * @return the applet's alignment. (top/left, center, or bottom/right) **/ - Alignment tqalignment() const { return _tqalignment; } + Alignment alignment() const { return _alignment; } /** * The panel on which this applet resides has changed its position. @@ -320,11 +320,11 @@ protected: virtual void positionChange( Position p ); /** - * The panel on which this applet resides has changed its tqalignment. + * The panel on which this applet resides has changed its alignment. * Reimplement this change handler in order to adjust the look of your * applet. **/ - virtual void tqalignmentChange( Alignment /*a*/ ) {} + virtual void alignmentChange( Alignment /*a*/ ) {} /** * Use this method to set the custom menu for this applet so that it can be shown @@ -383,7 +383,7 @@ protected: private: Type _type; Position _position; - Alignment _tqalignment; + Alignment _alignment; KConfig* _config; int _actions; protected: |