summaryrefslogtreecommitdiffstats
path: root/part/commands_file.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2016-03-26 12:35:35 +0100
committerSlávek Banko <slavek.banko@axis.cz>2016-03-26 14:10:15 +0100
commit38dca4b75c471ddf950e2f9f03801c550d7d26fd (patch)
treef5923ce5d84971f1f394baf7411146f078c02fab /part/commands_file.cpp
parente28665ce3b2e9ec6f09b4c021db7443cac3c4128 (diff)
downloadkxmleditor-38dca4b75c471ddf950e2f9f03801c550d7d26fd.tar.gz
kxmleditor-38dca4b75c471ddf950e2f9f03801c550d7d26fd.zip
Initial TQt conversion
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'part/commands_file.cpp')
-rw-r--r--part/commands_file.cpp14
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;