summaryrefslogtreecommitdiffstats
path: root/keduca/keduca
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commiteb570158698cf61dad4f77d950ef908160f6c3cc (patch)
tree649bf182bcf0a20bed5035d25ffd77de5aee138a /keduca/keduca
parentd8762de95349dc6edaa34db9bf699b367c1af6b1 (diff)
downloadtdeedu-eb570158698cf61dad4f77d950ef908160f6c3cc.tar.gz
tdeedu-eb570158698cf61dad4f77d950ef908160f6c3cc.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'keduca/keduca')
-rw-r--r--keduca/keduca/kcheckeduca.cpp2
-rw-r--r--keduca/keduca/kcheckeduca.h2
-rw-r--r--keduca/keduca/keduca.cpp4
-rw-r--r--keduca/keduca/keduca.h2
-rw-r--r--keduca/keduca/keduca_part.cpp4
-rw-r--r--keduca/keduca/keduca_part.h2
-rw-r--r--keduca/keduca/keducaprefs.cpp2
-rw-r--r--keduca/keduca/keducaprefs.h2
-rw-r--r--keduca/keduca/keducaview.cpp4
-rw-r--r--keduca/keduca/keducaview.h2
-rw-r--r--keduca/keduca/kgroupeduca.cpp2
-rw-r--r--keduca/keduca/kgroupeduca.h2
-rw-r--r--keduca/keduca/kquestion.cpp4
-rw-r--r--keduca/keduca/kquestion.h2
-rw-r--r--keduca/keduca/kradioeduca.cpp2
-rw-r--r--keduca/keduca/kradioeduca.h2
16 files changed, 20 insertions, 20 deletions
diff --git a/keduca/keduca/kcheckeduca.cpp b/keduca/keduca/kcheckeduca.cpp
index 996bbe04..1fd7465e 100644
--- a/keduca/keduca/kcheckeduca.cpp
+++ b/keduca/keduca/kcheckeduca.cpp
@@ -21,7 +21,7 @@
#include <tqstyle.h>
#include <kaccelmanager.h>
-KCheckEduca::KCheckEduca(TQWidget *tqparent, const char *name ) : TQCheckBox(tqparent,name)
+KCheckEduca::KCheckEduca(TQWidget *parent, const char *name ) : TQCheckBox(parent,name)
{
_doc = 0;
KAcceleratorManager::setNoAccel( this );
diff --git a/keduca/keduca/kcheckeduca.h b/keduca/keduca/kcheckeduca.h
index ba854242..24c6f467 100644
--- a/keduca/keduca/kcheckeduca.h
+++ b/keduca/keduca/kcheckeduca.h
@@ -31,7 +31,7 @@ class KCheckEduca : public TQCheckBox {
TQ_OBJECT
public:
- KCheckEduca(TQWidget *tqparent=0, const char *name=0);
+ KCheckEduca(TQWidget *parent=0, const char *name=0);
~KCheckEduca();
protected:
diff --git a/keduca/keduca/keduca.cpp b/keduca/keduca/keduca.cpp
index a09c1b3a..5c39c0ed 100644
--- a/keduca/keduca/keduca.cpp
+++ b/keduca/keduca/keduca.cpp
@@ -30,8 +30,8 @@
#include <tqlabel.h>
-Keduca::Keduca( TQWidget* tqparent, const char *name, WFlags f )
- : KParts::MainWindow( tqparent, name, f ), _part( 0 )
+Keduca::Keduca( TQWidget* parent, const char *name, WFlags f )
+ : KParts::MainWindow( parent, name, f ), _part( 0 )
{
setXMLFile( "keducaui.rc" );
diff --git a/keduca/keduca/keduca.h b/keduca/keduca/keduca.h
index ad2d8f58..f272ec63 100644
--- a/keduca/keduca/keduca.h
+++ b/keduca/keduca/keduca.h
@@ -38,7 +38,7 @@ class Keduca : public KParts::MainWindow
public:
/** construtor */
- Keduca(TQWidget* tqparent=0, const char *name=0, WFlags f = WType_TopLevel | WDestructiveClose);
+ Keduca(TQWidget* parent=0, const char *name=0, WFlags f = WType_TopLevel | WDestructiveClose);
/** destructor */
~Keduca();
/** Open gallery window */
diff --git a/keduca/keduca/keduca_part.cpp b/keduca/keduca/keduca_part.cpp
index 7a0f4326..bc9e5485 100644
--- a/keduca/keduca/keduca_part.cpp
+++ b/keduca/keduca/keduca_part.cpp
@@ -35,9 +35,9 @@ typedef KParts::GenericFactory<KEducaPart> KEducaPartFactory;
K_EXPORT_COMPONENT_FACTORY( libkeducapart, KEducaPartFactory )
KEducaPart::KEducaPart( TQWidget *parentWidget, const char *widgetName,
- TQObject *tqparent, const char *name,
+ TQObject *parent, const char *name,
const TQStringList &/*args*/ )
- : KParts::ReadOnlyPart( tqparent, name )
+ : KParts::ReadOnlyPart( parent, name )
{
setInstance( KEducaPartFactory::instance() );
diff --git a/keduca/keduca/keduca_part.h b/keduca/keduca/keduca_part.h
index 442ebbcd..d87d7540 100644
--- a/keduca/keduca/keduca_part.h
+++ b/keduca/keduca/keduca_part.h
@@ -41,7 +41,7 @@ class KEducaPart : public KParts::ReadOnlyPart
/*
* Constructor.
*/
- KEducaPart( TQWidget *parentWidget, const char *widgetName, TQObject *tqparent,
+ KEducaPart( TQWidget *parentWidget, const char *widgetName, TQObject *parent,
const char *name, const TQStringList &args );
/*
diff --git a/keduca/keduca/keducaprefs.cpp b/keduca/keduca/keducaprefs.cpp
index 1546e9ce..f118f3ad 100644
--- a/keduca/keduca/keducaprefs.cpp
+++ b/keduca/keduca/keducaprefs.cpp
@@ -27,7 +27,7 @@
#include <tqbuttongroup.h>
-KEducaPrefs::KEducaPrefs(TQWidget *tqparent, const char *name, bool modal ) : KDialogBase(IconList, i18n("Configure"), Ok|Cancel, Ok, tqparent, name, modal, true)
+KEducaPrefs::KEducaPrefs(TQWidget *parent, const char *name, bool modal ) : KDialogBase(IconList, i18n("Configure"), Ok|Cancel, Ok, parent, name, modal, true)
{
setPageGeneral();
configRead();
diff --git a/keduca/keduca/keducaprefs.h b/keduca/keduca/keducaprefs.h
index 5693489d..74c21454 100644
--- a/keduca/keduca/keducaprefs.h
+++ b/keduca/keduca/keducaprefs.h
@@ -32,7 +32,7 @@ class KEducaPrefs : public KDialogBase {
TQ_OBJECT
public:
- KEducaPrefs(TQWidget *tqparent=0, const char *name=0, bool modal=true);
+ KEducaPrefs(TQWidget *parent=0, const char *name=0, bool modal=true);
~KEducaPrefs();
private:
diff --git a/keduca/keduca/keducaview.cpp b/keduca/keduca/keducaview.cpp
index 6207760f..f7871e5c 100644
--- a/keduca/keduca/keducaview.cpp
+++ b/keduca/keduca/keducaview.cpp
@@ -37,8 +37,8 @@
#include <tqlabel.h>
#include <tqtextedit.h>
-KEducaView::KEducaView( TQWidget *tqparent, const char *name )
- : TQWidgetStack( tqparent, name ), _keducaFile( 0 ), _timeoutTimer( 0 )
+KEducaView::KEducaView( TQWidget *parent, const char *name )
+ : TQWidgetStack( parent, name ), _keducaFile( 0 ), _timeoutTimer( 0 )
{
init();
}
diff --git a/keduca/keduca/keducaview.h b/keduca/keduca/keducaview.h
index 0e70edd3..45387f0f 100644
--- a/keduca/keduca/keducaview.h
+++ b/keduca/keduca/keducaview.h
@@ -46,7 +46,7 @@ class KEducaView : public TQWidgetStack
TQ_OBJECT
public:
- KEducaView(TQWidget *tqparent=0, const char *name=0);
+ KEducaView(TQWidget *parent=0, const char *name=0);
~KEducaView();
/** Open url */
bool openURL( const KURL &url);
diff --git a/keduca/keduca/kgroupeduca.cpp b/keduca/keduca/kgroupeduca.cpp
index 6482f3e2..747b65da 100644
--- a/keduca/keduca/kgroupeduca.cpp
+++ b/keduca/keduca/kgroupeduca.cpp
@@ -22,7 +22,7 @@
#include <klocale.h>
-KGroupEduca::KGroupEduca(TQWidget *tqparent, const char *name ) : TQVButtonGroup(i18n("Answers"), tqparent, name)
+KGroupEduca::KGroupEduca(TQWidget *parent, const char *name ) : TQVButtonGroup(i18n("Answers"), parent, name)
{
_sv = new TQScrollView(this);
_sv->setVScrollBarMode(TQScrollView::Auto);
diff --git a/keduca/keduca/kgroupeduca.h b/keduca/keduca/kgroupeduca.h
index c7e574ca..ae507e2a 100644
--- a/keduca/keduca/kgroupeduca.h
+++ b/keduca/keduca/kgroupeduca.h
@@ -32,7 +32,7 @@ class KGroupEduca : public TQVButtonGroup {
public:
enum ButtonType { Radio, Check };
- KGroupEduca(TQWidget *tqparent=0, const char *name=0);
+ KGroupEduca(TQWidget *parent=0, const char *name=0);
~KGroupEduca();
/** Insert a check or radio button */
void insertAnswer( const TQString& text);
diff --git a/keduca/keduca/kquestion.cpp b/keduca/keduca/kquestion.cpp
index d3473275..fee2abc7 100644
--- a/keduca/keduca/kquestion.cpp
+++ b/keduca/keduca/kquestion.cpp
@@ -27,8 +27,8 @@
#include <kprogress.h>
#include <klocale.h>
-KQuestion::KQuestion( TQWidget *tqparent, const char *name )
- : TQHBox( tqparent, name ), _countdownTimer( 0 )
+KQuestion::KQuestion( TQWidget *parent, const char *name )
+ : TQHBox( parent, name ), _countdownTimer( 0 )
{
initGUI();
}
diff --git a/keduca/keduca/kquestion.h b/keduca/keduca/kquestion.h
index b3368e5c..23998da9 100644
--- a/keduca/keduca/kquestion.h
+++ b/keduca/keduca/kquestion.h
@@ -36,7 +36,7 @@ class KQuestion : public TQHBox
TQ_OBJECT
public:
- KQuestion(TQWidget *tqparent=0, const char *name=0);
+ KQuestion(TQWidget *parent=0, const char *name=0);
~KQuestion();
/** Set pixmap */
void setPixmap( const TQPixmap pixmap);
diff --git a/keduca/keduca/kradioeduca.cpp b/keduca/keduca/kradioeduca.cpp
index 80c9cf89..9b8ffe4f 100644
--- a/keduca/keduca/kradioeduca.cpp
+++ b/keduca/keduca/kradioeduca.cpp
@@ -20,7 +20,7 @@
#include <tqstyle.h>
#include <kaccelmanager.h>
-KRadioEduca::KRadioEduca(TQWidget *tqparent, const char *name) : TQRadioButton(tqparent,name)
+KRadioEduca::KRadioEduca(TQWidget *parent, const char *name) : TQRadioButton(parent,name)
{
_doc=0;
KAcceleratorManager::setNoAccel(this);
diff --git a/keduca/keduca/kradioeduca.h b/keduca/keduca/kradioeduca.h
index cf1a0b56..88dbcdb9 100644
--- a/keduca/keduca/kradioeduca.h
+++ b/keduca/keduca/kradioeduca.h
@@ -30,7 +30,7 @@ class KRadioEduca : public TQRadioButton {
TQ_OBJECT
public:
- KRadioEduca(TQWidget *tqparent=0, const char *name=0);
+ KRadioEduca(TQWidget *parent=0, const char *name=0);
~KRadioEduca();
protected: