summaryrefslogtreecommitdiffstats
path: root/src/modules/objects/class_buttongroup.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-28 18:31:12 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-28 18:31:12 +0000
commit0a80cfd57d271dd44221467efb426675fa470356 (patch)
tree6f503a31aa078eaf8fa015cf1749808529d49fc9 /src/modules/objects/class_buttongroup.cpp
parent3329e5a804e28ef3f5eb51d1e7affdd5a508e8f2 (diff)
downloadkvirc-0a80cfd57d271dd44221467efb426675fa470356.tar.gz
kvirc-0a80cfd57d271dd44221467efb426675fa470356.zip
TQt4 port kvirc
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kvirc@1238719 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/modules/objects/class_buttongroup.cpp')
-rw-r--r--src/modules/objects/class_buttongroup.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/modules/objects/class_buttongroup.cpp b/src/modules/objects/class_buttongroup.cpp
index 5f9f1756..611341ae 100644
--- a/src/modules/objects/class_buttongroup.cpp
+++ b/src/modules/objects/class_buttongroup.cpp
@@ -21,9 +21,9 @@
// Inc. ,51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
-#include <qbuttongroup.h>
+#include <tqbuttongroup.h>
#include "class_buttongroup.h"
-#include <qradiobutton.h>
+#include <tqradiobutton.h>
#include "kvi_error.h"
#include "kvi_debug.h"
@@ -47,9 +47,9 @@
[class]widget[/class]
@description:
This widget organizes buttons in a group.
- It will be usually a parent for other child controls.
- You can either use a child layout to manage the children geometries
- or use $setColumnLayout function to manage the layout automatically.
+ It will be usually a tqparent for other child controls.
+ You can either use a child tqlayout to manage the tqchildren geometries
+ or use $setColumnLayout function to manage the tqlayout automatically.
The class ineriths groupbox.
@functions:
@@ -73,11 +73,11 @@ KVSO_END_CONSTRUCTOR(KviKvsObject_buttongroup)
bool KviKvsObject_buttongroup::init(KviKvsRunTimeContext * pContext,KviKvsVariantList *pParams)
{
#ifdef COMPILE_USE_QT4
- QButtonGroup *group=new QButtonGroup(parentScriptWidget());
+ TQButtonGroup *group=new TQButtonGroup(tqparentScriptWidget());
group->setObjectName(name());
setObject(group,true);
#else
- setObject(new QButtonGroup(name(),parentScriptWidget()), true);
+ setObject(TQT_TQOBJECT(new TQButtonGroup(name(),tqparentScriptWidget())), true);
#endif