diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /interfaces/ktexteditor/editdcopinterface.cpp | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'interfaces/ktexteditor/editdcopinterface.cpp')
-rw-r--r-- | interfaces/ktexteditor/editdcopinterface.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/interfaces/ktexteditor/editdcopinterface.cpp b/interfaces/ktexteditor/editdcopinterface.cpp index 1a002d775..6130ccd14 100644 --- a/interfaces/ktexteditor/editdcopinterface.cpp +++ b/interfaces/ktexteditor/editdcopinterface.cpp @@ -15,12 +15,12 @@ EditDCOPInterface::~EditDCOPInterface() } -QString EditDCOPInterface::text () +TQString EditDCOPInterface::text () { return m_parent->text(); } -QString EditDCOPInterface::textLine ( uint line ) +TQString EditDCOPInterface::textLine ( uint line ) { return m_parent->textLine(line); } @@ -35,12 +35,12 @@ int EditDCOPInterface::length () return m_parent->length(); } -void EditDCOPInterface::setText ( const QString &text ) +void EditDCOPInterface::setText ( const TQString &text ) { m_parent->setText(text); } -bool EditDCOPInterface::insertText ( uint line, uint col, const QString &text ) +bool EditDCOPInterface::insertText ( uint line, uint col, const TQString &text ) { return m_parent->insertText( line, col, text); } @@ -50,7 +50,7 @@ bool EditDCOPInterface::removeText ( uint startLine, uint startCol, uint endLine return m_parent->removeText( startLine, startCol, endLine, endCol); } -bool EditDCOPInterface::insertLine ( uint line, const QString &text ) +bool EditDCOPInterface::insertLine ( uint line, const TQString &text ) { return m_parent->insertLine( line, text); } |