summaryrefslogtreecommitdiffstats
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
commit48e58438f49993e7bfc44f20ed2c4cf4050f66a6 (patch)
tree8898cfe18cf79b5335664dc2eb9f5854052eedd8
parent05cd892aec1d908c2fb517c374babab0ae13cf40 (diff)
downloadpotracegui-48e58438.tar.gz
potracegui-48e58438.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/potracegui@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--src/autotraceformats.cpp2
-rw-r--r--src/autotraceformats.h4
-rw-r--r--src/mainwidget.cpp2
-rw-r--r--src/mainwidget.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/autotraceformats.cpp b/src/autotraceformats.cpp
index c394694..893002a 100644
--- a/src/autotraceformats.cpp
+++ b/src/autotraceformats.cpp
@@ -19,7 +19,7 @@
***************************************************************************/
#include "autotraceformats.h"
-AutotraceFormats::AutotraceFormats(TQObject *tqparent, const char *name): TQObject(tqparent, name), allOK(true) {
+AutotraceFormats::AutotraceFormats(TQObject *parent, const char *name): TQObject(parent, name), allOK(true) {
inputProcess=new TQProcess(this);
outputProcess=new TQProcess(this);
diff --git a/src/autotraceformats.h b/src/autotraceformats.h
index aa00e9b..479e25b 100644
--- a/src/autotraceformats.h
+++ b/src/autotraceformats.h
@@ -35,10 +35,10 @@ Q_OBJECT
public:
//! Standard TQObject-like constructor
/** The constructor, nothing fancy
- * \param tqparent The tqparent of the TQObject
+ * \param parent The parent of the TQObject
* \param name The name of the TQObject
*/
- AutotraceFormats(TQObject *tqparent = 0, const char *name = 0);
+ AutotraceFormats(TQObject *parent = 0, const char *name = 0);
//!Returns the list of supported input formats
/** This class returns the list of formats returned by <code>autotrace -list-input-formats</code>
* \return The supported formats
diff --git a/src/mainwidget.cpp b/src/mainwidget.cpp
index 9cba2de..03cca92 100644
--- a/src/mainwidget.cpp
+++ b/src/mainwidget.cpp
@@ -48,7 +48,7 @@
#include <fstream>
using namespace std;
-MainWidget::MainWidget(TQWidget* tqparent, const char* name, WFlags fl): MainWidgetBase(tqparent,name,fl), m_changed(false) {
+MainWidget::MainWidget(TQWidget* parent, const char* name, WFlags fl): MainWidgetBase(parent,name,fl), m_changed(false) {
KImageIO::registerFormats();
setAcceptDrops(true);
diff --git a/src/mainwidget.h b/src/mainwidget.h
index 175e593..4c4aeae 100644
--- a/src/mainwidget.h
+++ b/src/mainwidget.h
@@ -55,7 +55,7 @@ class MainWidget : public MainWidgetBase
public:
//! Default constructor (all parameters are simply passed to MainWidgetBase)
- MainWidget(TQWidget* tqparent = 0, const char* name = 0, WFlags fl = 0 );
+ MainWidget(TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
//! Default destructor
~MainWidget();