summaryrefslogtreecommitdiffstats
path: root/kspread/kspread_doc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kspread/kspread_doc.cc')
-rw-r--r--kspread/kspread_doc.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/kspread/kspread_doc.cc b/kspread/kspread_doc.cc
index 0491e630..188dbe2e 100644
--- a/kspread/kspread_doc.cc
+++ b/kspread/kspread_doc.cc
@@ -169,8 +169,8 @@ public:
TQValueList<Doc*> Doc::Private::s_docs;
int Doc::Private::s_docId = 0;
-Doc::Doc( TQWidget *parentWidget, const char *widgetName, TQObject* tqparent, const char* name, bool singleViewMode )
- : KoDocument( parentWidget, widgetName, tqparent, name, singleViewMode )
+Doc::Doc( TQWidget *parentWidget, const char *widgetName, TQObject* parent, const char* name, bool singleViewMode )
+ : KoDocument( parentWidget, widgetName, parent, name, singleViewMode )
{
d = new Private;
d->m_loadingInfo = 0L;
@@ -505,11 +505,11 @@ KCompletion& Doc::completion()
return d->listCompletion;
}
-KoView* Doc::createViewInstance( TQWidget* tqparent, const char* name )
+KoView* Doc::createViewInstance( TQWidget* parent, const char* name )
{
if ( name == 0 )
name = "View";
- return new View( tqparent, name, this );
+ return new View( parent, name, this );
}
bool Doc::saveChildren( KoStore* _store )
@@ -2230,7 +2230,7 @@ void Doc::emitEndOperation()
{
TQApplication::restoreOverrideCursor();
- /* do this after the tqparent class emitEndOperation because that allows updates
+ /* do this after the parent class emitEndOperation because that allows updates
on the view again
*/
paintUpdates();
@@ -2254,7 +2254,7 @@ void Doc::emitEndOperation( const Region& /*region*/ )
TQApplication::restoreOverrideCursor();
- /* do this after the tqparent class emitEndOperation because that allows updates
+ /* do this after the parent class emitEndOperation because that allows updates
on the view again
*/
paintUpdates();