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 | 04766b207afba7961d4d802313e426f5a2fbef63 (patch) | |
tree | c888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /kformula/kformula_doc.cc | |
parent | b6edfe41c9395f2e20784cbf0e630af6426950a3 (diff) | |
download | koffice-04766b207afba7961d4d802313e426f5a2fbef63.tar.gz koffice-04766b207afba7961d4d802313e426f5a2fbef63.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kformula/kformula_doc.cc')
-rw-r--r-- | kformula/kformula_doc.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kformula/kformula_doc.cc b/kformula/kformula_doc.cc index 98c25b46..c5d1326c 100644 --- a/kformula/kformula_doc.cc +++ b/kformula/kformula_doc.cc @@ -55,8 +55,8 @@ #include <kformuladocument.h> -KFormulaDoc::KFormulaDoc(TQWidget *parentWidget, const char *widgetName, TQObject* tqparent, const char* name, bool singleViewMode) - : KoDocument(parentWidget, widgetName, tqparent, name, singleViewMode) +KFormulaDoc::KFormulaDoc(TQWidget *parentWidget, const char *widgetName, TQObject* parent, const char* name, bool singleViewMode) + : KoDocument(parentWidget, widgetName, parent, name, singleViewMode) { setInstance(KFormulaFactory::global(), false); //kdDebug(39001) << "General Settings" << endl; @@ -183,7 +183,7 @@ bool KFormulaDoc::saveNativeFormat( const TQString & file ) else return false; } - // If it's not MathML, let the tqparent handle it + // If it's not MathML, let the parent handle it return KoDocument::saveNativeFormat( file ); } @@ -212,12 +212,12 @@ bool KFormulaDoc::initDoc(InitDocFlags /*flags*/, TQWidget* /*parentWidget*/) return TRUE; } -void KFormulaDoc::showStartUpWidget(KoMainWindow* tqparent, bool /*alwaysShow*/) +void KFormulaDoc::showStartUpWidget(KoMainWindow* parent, bool /*alwaysShow*/) { - tqparent->setRootDocument( this ); + parent->setRootDocument( this ); } -bool KFormulaDoc::showEmbedInitDialog(TQWidget* /*tqparent*/) +bool KFormulaDoc::showEmbedInitDialog(TQWidget* /*parent*/) { return true; } |