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 /kexi/core/kexidialogbase.cpp | |
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 'kexi/core/kexidialogbase.cpp')
-rw-r--r-- | kexi/core/kexidialogbase.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kexi/core/kexidialogbase.cpp b/kexi/core/kexidialogbase.cpp index 01f20d8c..ff642741 100644 --- a/kexi/core/kexidialogbase.cpp +++ b/kexi/core/kexidialogbase.cpp @@ -41,9 +41,9 @@ #include <kapplication.h> #include <kiconloader.h> -KexiDialogBase::KexiDialogBase(KexiMainWindow *tqparent, const TQString &caption) - : KMdiChildView(caption, tqparent, "KexiDialogBase") - , KexiActionProxy(TQT_TQOBJECT(this), tqparent) +KexiDialogBase::KexiDialogBase(KexiMainWindow *parent, const TQString &caption) + : KMdiChildView(caption, parent, "KexiDialogBase") + , KexiActionProxy(TQT_TQOBJECT(this), parent) , m_isRegistered(false) , m_origCaption(caption) , m_schemaData(0) @@ -54,7 +54,7 @@ KexiDialogBase::KexiDialogBase(KexiMainWindow *tqparent, const TQString &caption m_supportedViewModes = 0; //will be set by KexiPart m_openedViewModes = 0; m_currentViewMode = Kexi::NoViewMode; //no view available yet - m_parentWindow = tqparent; + m_parentWindow = parent; m_creatingViewsMode = -1; TQVBoxLayout *lyr = new TQVBoxLayout(this); @@ -64,7 +64,7 @@ KexiDialogBase::KexiDialogBase(KexiMainWindow *tqparent, const TQString &caption #ifdef KEXI_NO_CTXT_HELP m_contextHelpInfo=new KexiContextHelpInfo(); #endif -// m_instance=tqparent->instance(); +// m_instance=parent->instance(); m_id = -1; m_item = 0; |