diff options
Diffstat (limited to 'part/commands_file.cpp')
-rw-r--r-- | part/commands_file.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/part/commands_file.cpp b/part/commands_file.cpp index f30ff2d..b19e15d 100644 --- a/part/commands_file.cpp +++ b/part/commands_file.cpp @@ -15,14 +15,14 @@ * * ***************************************************************************/ #include "commands_file.h" -#include <qstring.h> +#include <tqstring.h> #include <kurl.h> #include <kmessagebox.h> ////////////////////////////////////////////////////////////////////////////////////////// /////////// Setting Version & Encoding ////////// ////////////////////////////////////////////////////////////////////////////////////////// -KXEVersionEncodingCommand::KXEVersionEncodingCommand(KXEDocument* pDocument, const QString& oldData, const QString &newData) +KXEVersionEncodingCommand::KXEVersionEncodingCommand(KXEDocument* pDocument, const TQString& oldData, const TQString &newData) : KXECommand(pDocument) { m_strOldData = oldData; @@ -47,7 +47,7 @@ void KXEVersionEncodingCommand::unexecute() /////////// Attaching stylesheet ////////// ////////////////////////////////////////////////////////////////////////////////////////// -KXEStylesheetAttachCommand::KXEStylesheetAttachCommand(KXEDocument* pDocument,const QString& prevStylesheet,const QString& newStylesheet) +KXEStylesheetAttachCommand::KXEStylesheetAttachCommand(KXEDocument* pDocument,const TQString& prevStylesheet,const TQString& newStylesheet) : KXECommand(pDocument) { m_strNewStylesheet = newStylesheet; @@ -75,7 +75,7 @@ void KXEStylesheetAttachCommand::unexecute() /////////// Detaching Stylesheet ////////// ////////////////////////////////////////////////////////////////////////////////////////// -KXEStylesheetDetachCommand::KXEStylesheetDetachCommand(KXEDocument* pDocument,const QString& prevStylesheet) +KXEStylesheetDetachCommand::KXEStylesheetDetachCommand(KXEDocument* pDocument,const TQString& prevStylesheet) : KXECommand(pDocument) { m_strPrevStylesheet = prevStylesheet; @@ -100,14 +100,14 @@ void KXEStylesheetDetachCommand::unexecute() /////////// Attaching Schema ////////// ////////////////////////////////////////////////////////////////////////////////////////// -KXESchemaAttachCommand::KXESchemaAttachCommand(KXEDocument *pDocument,const QString& newSchema) +KXESchemaAttachCommand::KXESchemaAttachCommand(KXEDocument *pDocument,const TQString& newSchema) : KXECommand(pDocument) { m_pDocument = pDocument; m_strNewSchema = newSchema; m_strPrevSchema = ""; } -KXESchemaAttachCommand::KXESchemaAttachCommand(KXEDocument *pDocument,const QString& newSchema,const QString& prevSchema) +KXESchemaAttachCommand::KXESchemaAttachCommand(KXEDocument *pDocument,const TQString& newSchema,const TQString& prevSchema) : KXECommand(pDocument) { m_strNewSchema = newSchema; @@ -135,7 +135,7 @@ void KXESchemaAttachCommand::unexecute() /////////// Detaching schema ////////// ////////////////////////////////////////////////////////////////////////////////////////// -KXESchemaDetachCommand::KXESchemaDetachCommand(KXEDocument* pDocument, const QString& schema) +KXESchemaDetachCommand::KXESchemaDetachCommand(KXEDocument* pDocument, const TQString& schema) : KXECommand(pDocument) { m_schema = schema; |