diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | bce8199ddac4feecdee9c094fb8f75863cfa9652 (patch) | |
tree | b0521e39686b4b24960a9d83e72a9c09937a810c /kpovmodeler/pmviewlayoutmanager.h | |
parent | 03d51915bf86a00c5953817c89976b62785bb5a1 (diff) | |
download | tdegraphics-bce8199ddac4feecdee9c094fb8f75863cfa9652.tar.gz tdegraphics-bce8199ddac4feecdee9c094fb8f75863cfa9652.zip |
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmviewlayoutmanager.h')
-rw-r--r-- | kpovmodeler/pmviewlayoutmanager.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kpovmodeler/pmviewlayoutmanager.h b/kpovmodeler/pmviewlayoutmanager.h index 686472c3..1ef04eba 100644 --- a/kpovmodeler/pmviewlayoutmanager.h +++ b/kpovmodeler/pmviewlayoutmanager.h @@ -198,11 +198,11 @@ private: }; /** - * Singleton that contains the view tqlayouts available. + * Singleton that contains the view layouts available. * - * It interacts with @ref PMShell to create the view tqlayouts. - * The class maintains a list of tqlayouts as well as the name of the default - * tqlayout. The tqlayouts are stored in a XML file caled viewtqlayouts.xml. + * It interacts with @ref PMShell to create the view layouts. + * The class maintains a list of layouts as well as the name of the default + * tqlayout. The layouts are stored in a XML file caled viewlayouts.xml. */ class PMViewLayoutManager { @@ -217,7 +217,7 @@ public: static PMViewLayoutManager* theManager( ); /** - * Returns the list of available view tqlayouts + * Returns the list of available view layouts */ TQStringList availableLayouts( ); /** @@ -237,7 +237,7 @@ public: */ void displayDefaultLayout( PMShell* shell ); /** - * Loads all tqlayouts from the configuration file + * Loads all layouts from the configuration file */ void loadData( ); /** @@ -261,15 +261,15 @@ public: */ PMViewLayout* findLayout( const TQString& name ); /** - * Returns the list of available tqlayouts + * Returns the list of available layouts */ - TQValueList<PMViewLayout> tqlayouts( ) { return m_layouts; } + TQValueList<PMViewLayout> layouts( ) { return m_layouts; } /** - * Sets the list of available tqlayouts + * Sets the list of available layouts */ void setLayouts( const TQValueList<PMViewLayout>& l ) { m_layouts = l; } /** - * Fill the available tqlayouts menu + * Fill the available layouts menu */ void fillPopupMenu( KPopupMenu* pMenu ); private: |