diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | e47aaa9b34ffc363d268aca989aab28fdfaf9821 (patch) | |
tree | 369b56d21949c574d30f71bdf24bf1e04f5e1877 /src/gui/itemselector.h | |
parent | e05894553004a47b1e2f276bedcf5963b57a3932 (diff) | |
download | ktechlab-e47aaa9b34ffc363d268aca989aab28fdfaf9821.tar.gz ktechlab-e47aaa9b34ffc363d268aca989aab28fdfaf9821.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/itemselector.h')
-rw-r--r-- | src/gui/itemselector.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gui/itemselector.h b/src/gui/itemselector.h index 28f31b2..d0fd691 100644 --- a/src/gui/itemselector.h +++ b/src/gui/itemselector.h @@ -27,8 +27,8 @@ namespace KateMDI { class ToolView; } class ILVItem : public TQObject, public KListViewItem { public: - ILVItem( TQListView *tqparent, const TQString &id ); - ILVItem( TQListViewItem *tqparent, const TQString &id ); + ILVItem( TQListView *parent, const TQString &id ); + ILVItem( TQListViewItem *parent, const TQString &id ); void setProjectItem( ProjectItem * projectItem ) { m_pProjectItem = projectItem; } ProjectItem * projectItem() const { return m_pProjectItem; } @@ -60,7 +60,7 @@ class ItemSelector : public KListView Q_OBJECT TQ_OBJECT public: - ItemSelector( TQWidget *tqparent, const char *name ); + ItemSelector( TQWidget *parent, const char *name ); ~ItemSelector(); /** * Adds a listview item to the ListView @@ -91,7 +91,7 @@ class ItemSelector : public KListView */ void setListCaption( const TQString &caption ); /** - * Writes the open status (folded or unfolded) of "tqparent" items in the view + * Writes the open status (folded or unfolded) of "parent" items in the view * to the config file. */ void writeOpenStates(); @@ -124,11 +124,11 @@ class ComponentSelector : public ItemSelector Q_OBJECT TQ_OBJECT public: - static ComponentSelector * self( KateMDI::ToolView * tqparent = 0l ); + static ComponentSelector * self( KateMDI::ToolView * parent = 0l ); static TQString toolViewIdentifier() { return "ComponentSelector"; } private: - ComponentSelector( KateMDI::ToolView * tqparent ); + ComponentSelector( KateMDI::ToolView * parent ); static ComponentSelector * m_pSelf; }; @@ -142,11 +142,11 @@ class FlowPartSelector : public ItemSelector Q_OBJECT TQ_OBJECT public: - static FlowPartSelector * self( KateMDI::ToolView * tqparent = 0l ); + static FlowPartSelector * self( KateMDI::ToolView * parent = 0l ); static TQString toolViewIdentifier() { return "FlowPartSelector"; } private: - FlowPartSelector( KateMDI::ToolView * tqparent ); + FlowPartSelector( KateMDI::ToolView * parent ); static FlowPartSelector * m_pSelf; }; @@ -159,11 +159,11 @@ class MechanicsSelector : public ItemSelector Q_OBJECT TQ_OBJECT public: - static MechanicsSelector * self( KateMDI::ToolView * tqparent = 0l ); + static MechanicsSelector * self( KateMDI::ToolView * parent = 0l ); static TQString toolViewIdentifier() { return "MechanicsSelector"; } private: - MechanicsSelector( TQWidget *tqparent = 0L ); + MechanicsSelector( TQWidget *parent = 0L ); static MechanicsSelector * m_pSelf; }; |