diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
commit | 560378aaca1784ba19806a0414a32b20c744de39 (patch) | |
tree | ce0dfd7c3febf2a1adc7603d1019a8be2083c415 /kdeui/ktoolbar.h | |
parent | d4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff) | |
download | tdelibs-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/ktoolbar.h')
-rw-r--r-- | kdeui/ktoolbar.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kdeui/ktoolbar.h b/kdeui/ktoolbar.h index 9c85e5fc2..bb1a9bed2 100644 --- a/kdeui/ktoolbar.h +++ b/kdeui/ktoolbar.h @@ -61,7 +61,7 @@ class KDEUI_EXPORT KToolBarSeparator : public QFrame public: KToolBarSeparator( Orientation, bool l, TQToolBar *parent, const char* name=0 ); - TQSize sizeHint() const; + TQSize tqsizeHint() const; Orientation orientation() const { return orient; } TQSizePolicy sizePolicy() const; bool showLine() const { return line; } @@ -90,7 +90,7 @@ private: * Once you have a KToolBar object, you can insert items into it with the * insert... methods, or remove them with the removeItem() method. This * can be done at any time; the toolbar will be automatically updated. - * There are also many methods to set per-child properties like alignment + * There are also many methods to set per-child properties like tqalignment * and toggle behavior. * * KToolBar uses a global config group to load toolbar settings on @@ -116,7 +116,7 @@ public: * The state of the status bar. * @deprecated */ - enum BarStatus{Toggle, Show, Hide}; + enum BartqStatus{Toggle, Show, Hide}; /** * Possible bar positions. */ @@ -655,7 +655,7 @@ public: * Only @p one item can be autosized, and it has to be * the last left-aligned item. Items that come after this must be right * aligned. Items that can be right aligned are Lineds, Frames, Widgets and - * Combos. An autosized item will resize itself whenever the toolbar geometry + * Combos. An autosized item will resize itself whenever the toolbar tqgeometry * changes to the last right-aligned item (or to end of toolbar if there * are no right-aligned items.) * @see setFullWidth() @@ -750,10 +750,10 @@ public: * * This method is provided for compatibility only, * please use show() and/or hide() instead. - * @see BarStatus + * @see BartqStatus * @deprecated */ - bool enable(BarStatus stat) KDE_DEPRECATED; + bool enable(BartqStatus stat) KDE_DEPRECATED; /** * Use setMaximumHeight() instead. @@ -943,9 +943,9 @@ public: void setStretchableWidget( TQWidget *w ); TQSizePolicy sizePolicy() const; bool highlight() const; - TQSize sizeHint() const; - TQSize minimumSizeHint() const; - TQSize minimumSize() const; + TQSize tqsizeHint() const; + TQSize tqminimumSizeHint() const; + TQSize tqminimumSize() const; void hide(); void show(); @@ -1117,7 +1117,7 @@ private: Id2WidgetMap id2widget; KPopupMenu *context; TQPtrList<TQWidget> widgets; - TQTimer *layoutTimer; + TQTimer *tqlayoutTimer; TQGuardedPtr<TQWidget> stretchableWidget, rightAligned; protected: virtual void virtual_hook( int id, void* data ); |