From 9ba04742771370f59740e32e11c5f3a1e6a1b70a Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 5 Dec 2011 15:55:57 -0600 Subject: Initial TQt conversion --- kjsembed/builtins/stddialog_imp.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'kjsembed/builtins/stddialog_imp.cpp') diff --git a/kjsembed/builtins/stddialog_imp.cpp b/kjsembed/builtins/stddialog_imp.cpp index 48bb468d..122cd300 100644 --- a/kjsembed/builtins/stddialog_imp.cpp +++ b/kjsembed/builtins/stddialog_imp.cpp @@ -26,7 +26,7 @@ #else #include -#define KFileDialog QFileDialog +#define KFileDialog TQFileDialog #endif // QT_ONLY @@ -76,32 +76,32 @@ void StdDialogImp::addBindings( KJS::ExecState *exec, KJS::Object &parent ) KJS::Value StdDialogImp::call( KJS::ExecState *exec, KJS::Object &/*self*/, const KJS::List &args ) { - TQString arg0 = (args.size() > 0) ? args[0].toString(exec).qstring() : TQString::null; - TQString arg1 = (args.size() > 1) ? args[1].toString(exec).qstring() : TQString::null; + TTQString arg0 = (args.size() > 0) ? args[0].toString(exec).qstring() : TTQString::null; + TTQString arg1 = (args.size() > 1) ? args[1].toString(exec).qstring() : TTQString::null; switch( id ) { case MethodGetOpenFileName: { - TQString s = KFileDialog::getOpenFileName( arg0, arg1 ); + TTQString s = KFileDialog::getOpenFileName( arg0, arg1 ); return KJS::String( s ); } case MethodGetSaveFileName: { - TQString s = KFileDialog::getSaveFileName( arg0, arg1 ); + TTQString s = KFileDialog::getSaveFileName( arg0, arg1 ); return KJS::String( s ); } case MethodGetExistingDirectory: { - TQString s = KFileDialog::getExistingDirectory( arg0 ); + TTQString s = KFileDialog::getExistingDirectory( arg0 ); return KJS::String( s ); } #ifndef QT_ONLY case MethodGetColor: { - TQColor col; + TTQColor col; int res = KColorDialog::getColor( col ); - if ( res == TQDialog::Accepted ) - return convertToValue( exec, TQVariant(col) ); + if ( res == TTQDialog::Accepted ) + return convertToValue( exec, TTQVariant(col) ); } case MethodGetOpenURL: { -- cgit v1.2.1