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 | 89c017c3d5126cabd96acce26f538b37b48c085f (patch) | |
tree | 115673043b52ffe2e5f8b01ebcd7b886e0a1318b /src/gui/listview.h | |
parent | 0254ebaa5e056092461fd585b6851d15faa43035 (diff) | |
download | tellico-89c017c3d5126cabd96acce26f538b37b48c085f.tar.gz tellico-89c017c3d5126cabd96acce26f538b37b48c085f.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/listview.h')
-rw-r--r-- | src/gui/listview.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/listview.h b/src/gui/listview.h index 8f31977..6f2ec8b 100644 --- a/src/gui/listview.h +++ b/src/gui/listview.h @@ -52,7 +52,7 @@ public: SortByCount = 1 }; - ListView(TQWidget* tqparent, const char* name = 0); + ListView(TQWidget* parent, const char* name = 0); virtual ~ListView(); void clearSelection(); @@ -132,11 +132,11 @@ private: */ class ListViewItem : public KListViewItem { public: - ListViewItem(ListView* tqparent) : KListViewItem(tqparent), m_sortWeight(-1) {} - ListViewItem(ListView* tqparent, TQListViewItem* after) : KListViewItem(tqparent, after), m_sortWeight(-1) {} - ListViewItem(ListViewItem* tqparent) : KListViewItem(tqparent), m_sortWeight(-1) {} - ListViewItem(ListView* tqparent, const TQString& text) : KListViewItem(tqparent, text), m_sortWeight(-1) {} - ListViewItem(ListViewItem* tqparent, const TQString& text) : KListViewItem(tqparent, text), m_sortWeight(-1) {} + ListViewItem(ListView* parent) : KListViewItem(parent), m_sortWeight(-1) {} + ListViewItem(ListView* parent, TQListViewItem* after) : KListViewItem(parent, after), m_sortWeight(-1) {} + ListViewItem(ListViewItem* parent) : KListViewItem(parent), m_sortWeight(-1) {} + ListViewItem(ListView* parent, const TQString& text) : KListViewItem(parent, text), m_sortWeight(-1) {} + ListViewItem(ListViewItem* parent, const TQString& text) : KListViewItem(parent, text), m_sortWeight(-1) {} virtual ~ListViewItem(); virtual int realChildCount() const { return childCount(); } |