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 | 2c89c8119851d36886d21289ec3a3c7a1c071017 (patch) | |
tree | 1d9bad553f8c68593b8086895f410cb37bcb2a2f /src/flowlayout.cpp | |
parent | 497ab12472bb04a18ec409bbe643334329559864 (diff) | |
download | kima-2c89c8119851d36886d21289ec3a3c7a1c071017.tar.gz kima-2c89c8119851d36886d21289ec3a3c7a1c071017.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kima@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/flowlayout.cpp')
-rw-r--r-- | src/flowlayout.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/flowlayout.cpp b/src/flowlayout.cpp index ae37828..63621fc 100644 --- a/src/flowlayout.cpp +++ b/src/flowlayout.cpp @@ -67,12 +67,12 @@ TQLayoutItem* FlowLayoutIterator::takeCurrent(){ } -FlowLayout::FlowLayout( TQWidget* tqparent, Qt::Orientation orientation, int border, int space, const char* name ) - : TQLayout( tqparent, border, space, name ), +FlowLayout::FlowLayout( TQWidget* parent, Qt::Orientation orientation, int border, int space, const char* name ) + : TQLayout( parent, border, space, name ), mOrientation(orientation), mLastItem(NULL){ } -FlowLayout::FlowLayout( TQLayout* tqparent, Qt::Orientation orientation, int space, const char* name ) - : TQLayout( tqparent, space, name ), +FlowLayout::FlowLayout( TQLayout* parent, Qt::Orientation orientation, int space, const char* name ) + : TQLayout( parent, space, name ), mOrientation(orientation), mLastItem(NULL){ } FlowLayout::FlowLayout( Qt::Orientation orientation, int space, const char* name ) |