diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:40:25 -0600 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-27 04:09:43 +0200 |
commit | 07dae48f6a81b834e9f1544601a21051873ed0e2 (patch) | |
tree | 850d35b0e517659d431d0921a46d9b35b39a3712 /src/common/gui/container.h | |
parent | 1177a9f23b1c9929bef9464f434d82273783204c (diff) | |
download | piklab-07dae48f6a81b834e9f1544601a21051873ed0e2.tar.gz piklab-07dae48f6a81b834e9f1544601a21051873ed0e2.zip |
Remove additional unneeded tq method conversions
(cherry picked from commit 4374b9aebc67cce74e5c1099d5f4ad1749b05fc6)
Diffstat (limited to 'src/common/gui/container.h')
-rw-r--r-- | src/common/gui/container.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/gui/container.h b/src/common/gui/container.h index af3e5a6..cf3f351 100644 --- a/src/common/gui/container.h +++ b/src/common/gui/container.h @@ -26,8 +26,8 @@ public: Container(TQWidget *parent = 0, Type type = Flat); Container(TQWidgetStack *stack, uint index, Type type = Flat); Container(TQTabWidget *tabw, const TQString &title, Type type = Flat); - void addWidget(TQWidget *widget, uint startRow, uint endRow, uint startCol, uint endCol, int tqalignment = 0); - void addLayout(TQLayout *tqlayout, uint startRow, uint endRow, uint startCol, uint endCol, int tqalignment = 0); + void addWidget(TQWidget *widget, uint startRow, uint endRow, uint startCol, uint endCol, int alignment = 0); + void addLayout(TQLayout *tqlayout, uint startRow, uint endRow, uint startCol, uint endCol, int alignment = 0); uint numRows() const { return _gridLayout->numRows(); } uint numCols() const { return _gridLayout->numCols(); } void setFrame(Type type); |