summaryrefslogtreecommitdiffstats
path: root/karbon/karbon_factory.cc
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
commit04766b207afba7961d4d802313e426f5a2fbef63 (patch)
treec888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /karbon/karbon_factory.cc
parentb6edfe41c9395f2e20784cbf0e630af6426950a3 (diff)
downloadkoffice-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 'karbon/karbon_factory.cc')
-rw-r--r--karbon/karbon_factory.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/karbon/karbon_factory.cc b/karbon/karbon_factory.cc
index 041de7ff..1d267e1b 100644
--- a/karbon/karbon_factory.cc
+++ b/karbon/karbon_factory.cc
@@ -41,8 +41,8 @@ KarbonResourceServer* KarbonFactory::s_rserver = 0;
KInstance* KarbonFactory::s_instance = 0L;
KAboutData* KarbonFactory::s_aboutData = 0L;
-KarbonFactory::KarbonFactory( TQObject* tqparent, const char* name )
- : KoFactory( tqparent, name )
+KarbonFactory::KarbonFactory( TQObject* parent, const char* name )
+ : KoFactory( parent, name )
{
instance();
@@ -77,7 +77,7 @@ KarbonFactory::~KarbonFactory()
KParts::Part*
KarbonFactory::createPartObject( TQWidget* parentWidget, const char* widgetName,
- TQObject* tqparent, const char* name, const char* classname, const TQStringList& )
+ TQObject* parent, const char* name, const char* classname, const TQStringList& )
{
// If classname is "KoDocument", our host is a koffice application
// otherwise, the host wants us as a simple part, so switch to readonly and
@@ -87,7 +87,7 @@ KarbonFactory::createPartObject( TQWidget* parentWidget, const char* widgetName,
// parentWidget and widgetName are used by KoDocument for the
// "readonly+singleView" case.
KarbonPart* part =
- new KarbonPart( parentWidget, widgetName, tqparent, name, !bWantKoDocument );
+ new KarbonPart( parentWidget, widgetName, parent, name, !bWantKoDocument );
if( !bWantKoDocument )
part->setReadWrite( false );