diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-26 11:50:58 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-26 11:50:58 +0900 |
commit | 49e49d1876484adcc6c4f264b44b7f4cee28acc2 (patch) | |
tree | 1304c6506aae240b499e2a2db3779186c07e3708 /lib | |
parent | 074b714e29c0bbcd2bbfc6a931e252c4c90d07a9 (diff) | |
download | koffice-49e49d1876484adcc6c4f264b44b7f4cee28acc2.tar.gz koffice-49e49d1876484adcc6c4f264b44b7f4cee28acc2.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kformula/FILTERS | 2 | ||||
-rw-r--r-- | lib/kofficecore/KoOasisStore.cpp | 2 | ||||
-rw-r--r-- | lib/kross/ruby/rubyscript.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/kformula/FILTERS b/lib/kformula/FILTERS index b335573d..c6c75e26 100644 --- a/lib/kformula/FILTERS +++ b/lib/kformula/FILTERS @@ -8,7 +8,7 @@ IMPORT: -LaTeX Need a parser...I'll look at formula1 parser --C Style (i.e. niceThisFormula(QString)) +-C Style (i.e. niceThisFormula(TQString)) this is easy to do, cooming soon. diff --git a/lib/kofficecore/KoOasisStore.cpp b/lib/kofficecore/KoOasisStore.cpp index 62b6b0b1..c170297e 100644 --- a/lib/kofficecore/KoOasisStore.cpp +++ b/lib/kofficecore/KoOasisStore.cpp @@ -126,7 +126,7 @@ bool KoOasisStore::closeManifestWriter() { m_manifestWriter->endElement(); m_manifestWriter->endDocument(); - TQBuffer* buffer = TQT_TQBUFFER( static_cast<QIODevice*>(m_manifestWriter->device()) ); + TQBuffer* buffer = TQT_TQBUFFER( static_cast<TQIODevice*>(m_manifestWriter->device()) ); delete m_manifestWriter; m_manifestWriter = 0; bool ok = false; if ( m_store->open( "META-INF/manifest.xml" ) ) diff --git a/lib/kross/ruby/rubyscript.cpp b/lib/kross/ruby/rubyscript.cpp index 889383cd..b24fdb53 100644 --- a/lib/kross/ruby/rubyscript.cpp +++ b/lib/kross/ruby/rubyscript.cpp @@ -215,7 +215,7 @@ Kross::Api::Object::Ptr RubyScript::callFunction(const TQString& name, Kross::Ap } else { VALUE self = rb_eval_string("self"); - //krossdebug(QString("RubyScript::callFunction() ===> %1").arg(STR2CSTR(rb_inspect(self)))); + //krossdebug(TQString("RubyScript::callFunction() ===> %1").arg(STR2CSTR(rb_inspect(self)))); const int rnargs = args.size(); VALUE *rargs = new VALUE[rnargs]; |