summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-27 17:55:22 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-27 17:55:22 -0600
commitef5a04df564ad5c27406c41fb55e32ad3aa39d25 (patch)
treebf521221fffb7a73f318fc5579da7c25fed9ff74
parent6d5f6f30f0236920737b74261e664fdaab90c33c (diff)
downloadtdebindings-ef5a04df564ad5c27406c41fb55e32ad3aa39d25.tar.gz
tdebindings-ef5a04df564ad5c27406c41fb55e32ad3aa39d25.zip
Rename tqt3 color functions
-rw-r--r--kalyptus/kalyptusCxxToJNI.pm4
-rw-r--r--kalyptus/kalyptusCxxToJava.pm2
-rw-r--r--kalyptus/kalyptusCxxToKimono.pm2
-rw-r--r--kdejava/koala/org/kde/koala/KApplication.java2
-rw-r--r--kdejava/koala/org/kde/koala/KMdiMainFrm.java2
-rw-r--r--kjsembed/builtins/resources.cpp2
-rw-r--r--kjsembed/ksimpleprocess.cpp4
-rw-r--r--kjsembed/plugins/imagefx_plugin.cpp28
-rw-r--r--kjsembed/slotutils.cpp2
-rw-r--r--qtjava/javalib/examples/addressbook/ABMainWindow.java2
-rw-r--r--qtjava/javalib/examples/application/ApplicationWindow.java2
-rw-r--r--qtjava/javalib/examples/helpviewer/HelpWindow.java2
-rw-r--r--qtjava/javalib/examples/layout/ExampleWidget.java2
-rw-r--r--qtjava/javalib/examples/mdi/ApplicationWindow.java2
-rw-r--r--qtjava/javalib/examples/menu/MenuExample.java2
-rw-r--r--qtjava/javalib/examples/qmag/MagWidget.java10
-rw-r--r--qtjava/javalib/examples/qwerty/Editor.java6
-rw-r--r--qtjava/javalib/examples/richtext/MyRichText.java2
-rw-r--r--qtjava/javalib/examples/rot13/Rot13.java2
-rw-r--r--qtjava/javalib/examples/scribble/Scribble.java2
-rw-r--r--qtjava/javalib/examples/showimg/ImageViewer.java2
-rw-r--r--qtjava/javalib/examples/sound/SoundPlayer.java2
-rw-r--r--qtjava/javalib/examples/tabdialog/TabDialog.java2
-rw-r--r--qtjava/javalib/examples/textedit/TextEdit.java8
-rw-r--r--qtjava/javalib/examples/widgets/MyWidgetView.java2
-rw-r--r--qtjava/javalib/examples/widgets/WidgetView.java12
-rw-r--r--qtjava/javalib/examples/wizard/Wizard.java2
-rw-r--r--qtjava/javalib/org/kde/qt/Qt.java18
-rw-r--r--qtjava/javalib/qtjava/Qt.cpp18
-rw-r--r--qtjava/javalib/test/ScribbleWindow.java2
-rw-r--r--qtjava/javalib/tutorial/t10/Tut10.java2
-rw-r--r--qtjava/javalib/tutorial/t11/Tut11.java2
-rw-r--r--qtjava/javalib/tutorial/t12/Tut12.java2
-rw-r--r--qtjava/javalib/tutorial/t13/GameBoard.java2
-rw-r--r--qtjava/javalib/tutorial/t14/GameBoard.java6
-rw-r--r--qtjava/javalib/tutorial/t4/Tut4.java2
-rw-r--r--qtjava/javalib/tutorial/t5/Tut5.java2
-rw-r--r--qtjava/javalib/tutorial/t6/Tut6.java2
-rw-r--r--qtjava/javalib/tutorial/t7/Tut7.java2
-rw-r--r--qtjava/javalib/tutorial/t8/Tut8.java2
-rw-r--r--qtjava/javalib/tutorial/t9/Tut9.java2
-rw-r--r--qtruby/rubylib/qtruby/Qt.cpp4
-rw-r--r--qtsharp/src/bindings/static/TQObject.cs2
-rw-r--r--qtsharp/src/examples/samples/display.cs2
-rw-r--r--qtsharp/src/examples/samples/quantumfractals.cs4
-rw-r--r--qtsharp/src/examples/samples/scribblewindow.cs2
-rw-r--r--qtsharp/src/examples/tutorials/t4.cs4
-rw-r--r--qtsharp/src/examples/tutorials/t5.cs2
-rw-r--r--qtsharp/src/examples/tutorials/t6.cs2
-rw-r--r--qtsharp/src/examples/tutorials/t7.cs2
50 files changed, 100 insertions, 100 deletions
diff --git a/kalyptus/kalyptusCxxToJNI.pm b/kalyptus/kalyptusCxxToJNI.pm
index 2da2cc7e..c20a2974 100644
--- a/kalyptus/kalyptusCxxToJNI.pm
+++ b/kalyptus/kalyptusCxxToJNI.pm
@@ -504,7 +504,7 @@ EOF
public static native TQCursor forbiddenCursor(); // forbidden cursor (slashed circle)
public static native TQCursor whatsThisCursor(); // arrow with a question mark
- public static native TQApplication qApp();
+ public static native TQApplication tqApp();
public static native void qDebug(String message);
public static void qDebug(String pattern, Object[] arguments) {
@@ -814,7 +814,7 @@ JNIEXPORT jobject JNICALL
Java_org_kde_qt_Qt_qApp(JNIEnv* env, jclass cls)
{
(void) cls;
- return (jobject) QtSupport::objectForQtKey(env, qApp, "org.kde.qt.TQApplication");
+ return (jobject) QtSupport::objectForQtKey(env, tqApp, "org.kde.qt.TQApplication");
}
JNIEXPORT void JNICALL
diff --git a/kalyptus/kalyptusCxxToJava.pm b/kalyptus/kalyptusCxxToJava.pm
index fa518cf1..7cfc6261 100644
--- a/kalyptus/kalyptusCxxToJava.pm
+++ b/kalyptus/kalyptusCxxToJava.pm
@@ -299,7 +299,7 @@ EOF
public static native TQCursor pointingHandCursor(); // pointing hand
public static native TQCursor forbiddenCursor(); // forbidden cursor (slashed circle)
*/
-// public static native TQApplication qApp();
+// public static native TQApplication tqApp();
public static native void qDebug(String message);
public static void qDebug(String pattern, Object[] arguments) {
diff --git a/kalyptus/kalyptusCxxToKimono.pm b/kalyptus/kalyptusCxxToKimono.pm
index 77e0af85..1cb5dbf5 100644
--- a/kalyptus/kalyptusCxxToKimono.pm
+++ b/kalyptus/kalyptusCxxToKimono.pm
@@ -395,7 +395,7 @@ EOF
public const int IO_TimeOutError = 7;
public const int IO_UnspecifiedError= 8;
- public static TQApplication qApp = null;
+ public static TQApplication tqApp = null;
public static string SIGNAL(string signal) {
return "2"+ signal;
diff --git a/kdejava/koala/org/kde/koala/KApplication.java b/kdejava/koala/org/kde/koala/KApplication.java
index 8776d818..742e42ef 100644
--- a/kdejava/koala/org/kde/koala/KApplication.java
+++ b/kdejava/koala/org/kde/koala/KApplication.java
@@ -677,7 +677,7 @@ public class KApplication extends TQApplication implements KInstanceInterface {
public static native void addCmdLineOptions();
/**
Returns the current application object.
- This is similar to the global TQApplication pointer qApp. It
+ This is similar to the global TQApplication pointer tqApp. It
allows access to the single global KApplication object, since
more than one cannot be created in the same application. It
saves you the trouble of having to pass the pointer explicitly
diff --git a/kdejava/koala/org/kde/koala/KMdiMainFrm.java b/kdejava/koala/org/kde/koala/KMdiMainFrm.java
index 240544bc..2c3c5fef 100644
--- a/kdejava/koala/org/kde/koala/KMdiMainFrm.java
+++ b/kdejava/koala/org/kde/koala/KMdiMainFrm.java
@@ -34,7 +34,7 @@ import org.kde.qt.TQResizeEvent;
to define your main window class and
<pre>
MyMainWindow mainframe;
- qApp.setMainWidget(&mainframe);
+ tqApp.setMainWidget(&mainframe);
mainframe.addWindow(view1); // put it under MDI control
mainframe.addWindow(view2);
</pre>
diff --git a/kjsembed/builtins/resources.cpp b/kjsembed/builtins/resources.cpp
index 192b17fa..b7244d84 100644
--- a/kjsembed/builtins/resources.cpp
+++ b/kjsembed/builtins/resources.cpp
@@ -140,7 +140,7 @@ KJS::Value StdDirsImp::call( KJS::ExecState *exec, KJS::Object &/*self*/, const
case StdDirsImp::homeDirPath:
return KJS::String(TQDir::homeDirPath());
case StdDirsImp::applicationDirPath:
- return KJS::String(qApp->applicationDirPath());
+ return KJS::String(tqApp->applicationDirPath());
default:
kdWarning() << "StdDirsImp has no method " << id << endl;
}
diff --git a/kjsembed/ksimpleprocess.cpp b/kjsembed/ksimpleprocess.cpp
index 212566ec..a1adf3ac 100644
--- a/kjsembed/ksimpleprocess.cpp
+++ b/kjsembed/ksimpleprocess.cpp
@@ -69,7 +69,7 @@ void KSimpleProcess::enter_loop()
TQWidget dummy(0,0,WType_Dialog | WShowModal);
dummy.setFocusPolicy( TQWidget::NoFocus );
qt_enter_modal(&dummy);
- qApp->enter_loop();
+ tqApp->enter_loop();
qt_leave_modal(&dummy);
}
@@ -77,7 +77,7 @@ void KSimpleProcess::slotProcessExited()
{
while( m_proc->canReadLineStdout() )
m_currBuffer += m_proc->readLineStdout() + '\n';
- qApp->exit_loop();
+ tqApp->exit_loop();
}
void KSimpleProcess::slotReceivedStdout()
diff --git a/kjsembed/plugins/imagefx_plugin.cpp b/kjsembed/plugins/imagefx_plugin.cpp
index ef3d0ed0..b7da9e91 100644
--- a/kjsembed/plugins/imagefx_plugin.cpp
+++ b/kjsembed/plugins/imagefx_plugin.cpp
@@ -560,9 +560,9 @@ inline const T& kClamp( const T& x, const T& low, const T& high )
}
static inline unsigned int intensityValue( unsigned int color ) {
- return (unsigned int)( (0.299*qRed( color ) +
- 0.587*qGreen( color ) +
- 0.1140000000000001*qBlue( color ) ) );
+ return (unsigned int)( (0.299*tqRed( color ) +
+ 0.587*tqGreen( color ) +
+ 0.1140000000000001*tqBlue( color ) ) );
}
struct BumpmapParams {
@@ -643,7 +643,7 @@ static void bumpmap_convert_row( uint *row,
unsigned int idx = (unsigned int)(intensityValue( *row ) + 0.5);
*p++ = lut[(unsigned int) ( waterlevel +
( ( idx -
- waterlevel) * qBlue( *row )) / 255.0 )];
+ waterlevel) * tqBlue( *row )) / 255.0 )];
} else {
unsigned int idx = (unsigned int)(intensityValue( *row ) + 0.5);
*p++ = lut[idx];
@@ -730,19 +730,19 @@ static void bumpmap_row( uint *src,
* also change
*/
if (compensate) {
- int red = (int)((qRed( *src ) * shade) / (params->compensation * 255));
- int green = (int)((qGreen( *src ) * shade) / (params->compensation * 255));
- int blue = (int)((qBlue( *src ) * shade) / (params->compensation * 255));
- int alpha = (int)((qAlpha( *src ) * shade) / (params->compensation * 255));
+ int red = (int)((tqRed( *src ) * shade) / (params->compensation * 255));
+ int green = (int)((tqGreen( *src ) * shade) / (params->compensation * 255));
+ int blue = (int)((tqBlue( *src ) * shade) / (params->compensation * 255));
+ int alpha = (int)((tqAlpha( *src ) * shade) / (params->compensation * 255));
++src;
- *dest++ = qRgba( red, green, blue, alpha );
+ *dest++ = tqRgba( red, green, blue, alpha );
} else {
- int red = qRed( *src ) * shade / 255;
- int green = qGreen( *src ) * shade / 255;
- int blue = qBlue( *src ) * shade / 255;
- int alpha = qAlpha( *src ) * shade / 255;
+ int red = tqRed( *src ) * shade / 255;
+ int green = tqGreen( *src ) * shade / 255;
+ int blue = tqBlue( *src ) * shade / 255;
+ int alpha = tqAlpha( *src ) * shade / 255;
++src;
- *dest++ = qRgba( red, green, blue, alpha );
+ *dest++ = tqRgba( red, green, blue, alpha );
}
/* Next pixel */
diff --git a/kjsembed/slotutils.cpp b/kjsembed/slotutils.cpp
index 5d929fd2..1ba13188 100644
--- a/kjsembed/slotutils.cpp
+++ b/kjsembed/slotutils.cpp
@@ -244,7 +244,7 @@ void JSSlotUtils::implantColor( KJS::ExecState *exec, TQUObject *uo, const KJS::
pix = pix << 8;
pix = pix | a;
- *color = TQColor( qRgba(r,g,b,a), pix );
+ *color = TQColor( tqRgba(r,g,b,a), pix );
}
}
diff --git a/qtjava/javalib/examples/addressbook/ABMainWindow.java b/qtjava/javalib/examples/addressbook/ABMainWindow.java
index c4949289..570e6b8b 100644
--- a/qtjava/javalib/examples/addressbook/ABMainWindow.java
+++ b/qtjava/javalib/examples/addressbook/ABMainWindow.java
@@ -39,7 +39,7 @@ public void setupMenuBar()
file.insertItem( new TQIconSet(new TQPixmap( "fileprint.xpm" )), "Print...", this, SLOT( "filePrint()" ), new TQKeySequence(CTRL + Key_P) );
file.insertSeparator();
file.insertItem( "Close", this, SLOT( "closeWindow()" ), new TQKeySequence(CTRL + Key_W) );
- file.insertItem( "Quit", qApp(), SLOT( "quit()" ), new TQKeySequence(CTRL + Key_Q) );
+ file.insertItem( "Quit", tqApp(), SLOT( "quit()" ), new TQKeySequence(CTRL + Key_Q) );
}
public void setupFileTools()
diff --git a/qtjava/javalib/examples/application/ApplicationWindow.java b/qtjava/javalib/examples/application/ApplicationWindow.java
index f214d240..a169454d 100644
--- a/qtjava/javalib/examples/application/ApplicationWindow.java
+++ b/qtjava/javalib/examples/application/ApplicationWindow.java
@@ -125,7 +125,7 @@ public class ApplicationWindow extends TQMainWindow {
connect(fileCloseAction, SIGNAL("activated()"), this, SLOT("close()"));
fileQuitAction = new TQAction("Quit", "&Quit", new TQKeySequence(CTRL+Key_Q), this, "quit", false);
- connect(fileQuitAction, SIGNAL("activated()"), qApp(), SLOT("closeAllWindows()"));
+ connect(fileQuitAction, SIGNAL("activated()"), tqApp(), SLOT("closeAllWindows()"));
// populate a tool bar with some actions
diff --git a/qtjava/javalib/examples/helpviewer/HelpWindow.java b/qtjava/javalib/examples/helpviewer/HelpWindow.java
index d220d35e..d5c6858d 100644
--- a/qtjava/javalib/examples/helpviewer/HelpWindow.java
+++ b/qtjava/javalib/examples/helpviewer/HelpWindow.java
@@ -61,7 +61,7 @@ HelpWindow( String home_, String _path,
file.insertItem( tr("&Print"), this, SLOT(" print()"), new TQKeySequence(CTRL+Key_P) );
file.insertSeparator();
file.insertItem( tr("&Close"), this, SLOT(" close()"), new TQKeySequence(CTRL+Key_Q) );
- file.insertItem( tr("E&xit"), qApp(), SLOT(" closeAllWindows()"), new TQKeySequence(CTRL+Key_X) );
+ file.insertItem( tr("E&xit"), tqApp(), SLOT(" closeAllWindows()"), new TQKeySequence(CTRL+Key_X) );
// The same three icons are used twice each.
TQIconSet icon_back = new TQIconSet( new TQPixmap("back.xpm") );
diff --git a/qtjava/javalib/examples/layout/ExampleWidget.java b/qtjava/javalib/examples/layout/ExampleWidget.java
index 1bdc8e54..cb6c5408 100644
--- a/qtjava/javalib/examples/layout/ExampleWidget.java
+++ b/qtjava/javalib/examples/layout/ExampleWidget.java
@@ -30,7 +30,7 @@ ExampleWidget( TQWidget parent, String name )
menubar.setSeparator( TQMenuBar.InWindowsStyle );
TQPopupMenu popup;
popup = new TQPopupMenu( this );
- popup.insertItem( "&Quit", qApp(), SLOT("quit()") );
+ popup.insertItem( "&Quit", tqApp(), SLOT("quit()") );
menubar.insertItem( "&File", popup );
// ...and tell the layout about it.
diff --git a/qtjava/javalib/examples/mdi/ApplicationWindow.java b/qtjava/javalib/examples/mdi/ApplicationWindow.java
index 624dfa4a..85c3a8ca 100644
--- a/qtjava/javalib/examples/mdi/ApplicationWindow.java
+++ b/qtjava/javalib/examples/mdi/ApplicationWindow.java
@@ -159,7 +159,7 @@ ApplicationWindow()
file.setWhatsThis( id, filePrintText );
file.insertSeparator();
file.insertItem( "&Close", this, SLOT("closeWindow()"), new TQKeySequence(CTRL+Key_W) );
- file.insertItem( "&Quit", qApp(), SLOT(" closeAllWindows()"), new TQKeySequence(CTRL+Key_Q) );
+ file.insertItem( "&Quit", tqApp(), SLOT(" closeAllWindows()"), new TQKeySequence(CTRL+Key_Q) );
windowsMenu = new TQPopupMenu( this );
windowsMenu.setCheckable( true );
diff --git a/qtjava/javalib/examples/menu/MenuExample.java b/qtjava/javalib/examples/menu/MenuExample.java
index c7b72ce7..1965efa4 100644
--- a/qtjava/javalib/examples/menu/MenuExample.java
+++ b/qtjava/javalib/examples/menu/MenuExample.java
@@ -149,7 +149,7 @@ MenuExample( TQWidget parent, String name )
file.insertSeparator();
file.insertItem( "&Print", print, CTRL+Key_P );
file.insertSeparator();
- file.insertItem( "E&xit", qApp(), SLOT("quit()"), new TQKeySequence(CTRL+Key_Q) );
+ file.insertItem( "E&xit", tqApp(), SLOT("quit()"), new TQKeySequence(CTRL+Key_Q) );
TQPopupMenu edit = new TQPopupMenu( this );
int undoID = edit.insertItem( "&Undo", this, SLOT("undo()") );
diff --git a/qtjava/javalib/examples/qmag/MagWidget.java b/qtjava/javalib/examples/qmag/MagWidget.java
index cf766570..33637587 100644
--- a/qtjava/javalib/examples/qmag/MagWidget.java
+++ b/qtjava/javalib/examples/qmag/MagWidget.java
@@ -91,7 +91,7 @@ MagWidget( TQWidget parent, String name )
10+multiSaveButton.fontMetrics().width("MultiSave"), 20 );
quitButton = new TQPushButton( this );
- connect( quitButton, SIGNAL("clicked()"), qApp(), SLOT("quit()") );
+ connect( quitButton, SIGNAL("clicked()"), tqApp(), SLOT("quit()") );
quitButton.setText( "Quit" );
quitButton.setGeometry( multiSaveButton.geometry().right() + 2, 2,
10+quitButton.fontMetrics().width("Quit"), 20 );
@@ -296,10 +296,10 @@ protected void mouseMoveEvent( TQMouseEvent e )
if ( image.valid(x,y) )
{
int px = image.pixel(x,y);
- pixelinfo= " " + qRed(px) + "," + qGreen(px) + "," + qBlue(px) + " ";
- pixelinfo += "#" + Integer.toHexString(qRed(px))
- + Integer.toHexString(qGreen(px))
- + Integer.toHexString(qBlue(px)) + " ";
+ pixelinfo= " " + tqRed(px) + "," + tqGreen(px) + "," + tqBlue(px) + " ";
+ pixelinfo += "#" + Integer.toHexString(tqRed(px))
+ + Integer.toHexString(tqGreen(px))
+ + Integer.toHexString(tqBlue(px)) + " ";
}
String label = "x=" + (x+grabx) + ", y=" + (y+graby) + " " + pixelinfo;
rgb.setText( label );
diff --git a/qtjava/javalib/examples/qwerty/Editor.java b/qtjava/javalib/examples/qwerty/Editor.java
index 3598c144..ec1423ad 100644
--- a/qtjava/javalib/examples/qwerty/Editor.java
+++ b/qtjava/javalib/examples/qwerty/Editor.java
@@ -59,7 +59,7 @@ Editor( TQWidget parent , String name )
file.insertItem( "&Print...", this, SLOT("print()"), new TQKeySequence(ALT+Key_P) );
file.insertSeparator();
file.insertItem( "&Close", this, SLOT("close()"),new TQKeySequence(ALT+Key_W) );
- file.insertItem( "&Quit", qApp(), SLOT("closeAllWindows()"), new TQKeySequence(ALT+Key_Q) );
+ file.insertItem( "&Quit", tqApp(), SLOT("closeAllWindows()"), new TQKeySequence(ALT+Key_Q) );
connect( save_as, SIGNAL("activated(int)"), this, SLOT("saveAsEncoding(int)") );
connect( open_as, SIGNAL("activated(int)"), this, SLOT("openAsEncoding(int)") );
@@ -128,8 +128,8 @@ void rebuildCodecList()
void newDoc()
{
Editor ed = new Editor();
- if ( qApp().desktop().size().width() < 450
- || qApp().desktop().size().height() < 450 ) {
+ if ( tqApp().desktop().size().width() < 450
+ || tqApp().desktop().size().height() < 450 ) {
ed.showMaximized();
} else {
ed.resize( 400, 400 );
diff --git a/qtjava/javalib/examples/richtext/MyRichText.java b/qtjava/javalib/examples/richtext/MyRichText.java
index 79f6ac1e..1b6b299b 100644
--- a/qtjava/javalib/examples/richtext/MyRichText.java
+++ b/qtjava/javalib/examples/richtext/MyRichText.java
@@ -108,7 +108,7 @@ MyRichText( TQWidget parent, String name )
bPrev.setEnabled( false );
- connect( bClose, SIGNAL(" clicked()"), qApp(), SLOT(" quit()") );
+ connect( bClose, SIGNAL(" clicked()"), tqApp(), SLOT(" quit()") );
connect( bPrev, SIGNAL(" clicked()"), this, SLOT(" prev()") );
connect( bNext, SIGNAL(" clicked()"), this, SLOT(" next()") );
diff --git a/qtjava/javalib/examples/rot13/Rot13.java b/qtjava/javalib/examples/rot13/Rot13.java
index 67c2ee7f..8d5c1315 100644
--- a/qtjava/javalib/examples/rot13/Rot13.java
+++ b/qtjava/javalib/examples/rot13/Rot13.java
@@ -29,7 +29,7 @@ Rot13()
TQPushButton quit = new TQPushButton( "&Quit", this );
quit.setFocusPolicy( NoFocus );
- connect( quit, SIGNAL("clicked()"), qApp(), SLOT("quit()") );
+ connect( quit, SIGNAL("clicked()"), tqApp(), SLOT("quit()") );
TQGridLayout l = new TQGridLayout( this, 2, 2, 5 );
l.addWidget( left, 0, 0 );
diff --git a/qtjava/javalib/examples/scribble/Scribble.java b/qtjava/javalib/examples/scribble/Scribble.java
index e9ecda9e..1f7b8408 100644
--- a/qtjava/javalib/examples/scribble/Scribble.java
+++ b/qtjava/javalib/examples/scribble/Scribble.java
@@ -57,7 +57,7 @@ Canvas( TQWidget parent, String name )
pen = new TQPen( Qt.red(), 3 );
polyline = new TQPointArray(3);
- if ((qApp().args().length > 0) && !buffer.load(qApp().args()[0]))
+ if ((tqApp().args().length > 0) && !buffer.load(tqApp().args()[0]))
buffer.fill( colorGroup().base() );
setBackgroundMode( TQWidget.PaletteBase );
setCursor( Qt.crossCursor() );
diff --git a/qtjava/javalib/examples/showimg/ImageViewer.java b/qtjava/javalib/examples/showimg/ImageViewer.java
index c902e413..bb7ae395 100644
--- a/qtjava/javalib/examples/showimg/ImageViewer.java
+++ b/qtjava/javalib/examples/showimg/ImageViewer.java
@@ -83,7 +83,7 @@ ImageViewer( TQWidget parent, String name, int wFlags )
si = file.insertItem( "Save image", saveimage );
sp = file.insertItem( "Save pixmap", savepixmap );
file.insertSeparator();
- file.insertItem( "E&xit", qApp(), SLOT("quit()"), new TQKeySequence(CTRL+Key_Q) );
+ file.insertItem( "E&xit", tqApp(), SLOT("quit()"), new TQKeySequence(CTRL+Key_Q) );
edit = new TQPopupMenu( menubar );
menubar.insertItem( "&Edit", edit );
diff --git a/qtjava/javalib/examples/sound/SoundPlayer.java b/qtjava/javalib/examples/sound/SoundPlayer.java
index 81b7a932..cf546a16 100644
--- a/qtjava/javalib/examples/sound/SoundPlayer.java
+++ b/qtjava/javalib/examples/sound/SoundPlayer.java
@@ -57,7 +57,7 @@ SoundPlayer()
file.insertItem("Play 3 and 4 together", this, SLOT("doPlay34()"));
file.insertItem("Play all together", this, SLOT("doPlay1234()"));
file.insertSeparator();
- file.insertItem("E&xit", qApp(), SLOT("quit()"));
+ file.insertItem("E&xit", tqApp(), SLOT("quit()"));
menuBar().insertItem("&File", file);
}
diff --git a/qtjava/javalib/examples/tabdialog/TabDialog.java b/qtjava/javalib/examples/tabdialog/TabDialog.java
index bbfeb0ff..f529509a 100644
--- a/qtjava/javalib/examples/tabdialog/TabDialog.java
+++ b/qtjava/javalib/examples/tabdialog/TabDialog.java
@@ -27,7 +27,7 @@ TabDialog( TQWidget parent, String name, String _filename )
setupTab2();
setupTab3();
- connect( this, SIGNAL(" applyButtonPressed()"), qApp(), SLOT(" quit()") );
+ connect( this, SIGNAL(" applyButtonPressed()"), tqApp(), SLOT(" quit()") );
}
void setupTab1()
diff --git a/qtjava/javalib/examples/textedit/TextEdit.java b/qtjava/javalib/examples/textedit/TextEdit.java
index 7135f0e6..560ebc32 100644
--- a/qtjava/javalib/examples/textedit/TextEdit.java
+++ b/qtjava/javalib/examples/textedit/TextEdit.java
@@ -48,11 +48,11 @@ TextEdit( TQWidget parent, String name )
this, SLOT(" editorChanged( TQWidget )") );
setCentralWidget( tabWidget );
- if ( qApp().args().length == 0 ) {
+ if ( tqApp().args().length == 0 ) {
load( "example.html" );
} else {
- for ( int i = 0; i < qApp().args().length; ++i )
- load( qApp().args()[ i ] );
+ for ( int i = 0; i < tqApp().args().length; ++i )
+ load( tqApp().args()[ i ] );
}
}
@@ -332,7 +332,7 @@ void fileClose()
void fileExit()
{
- qApp().quit();
+ tqApp().quit();
}
void editUndo()
diff --git a/qtjava/javalib/examples/widgets/MyWidgetView.java b/qtjava/javalib/examples/widgets/MyWidgetView.java
index 968a13ea..948de601 100644
--- a/qtjava/javalib/examples/widgets/MyWidgetView.java
+++ b/qtjava/javalib/examples/widgets/MyWidgetView.java
@@ -31,7 +31,7 @@ public MyWidgetView( TQWidget parent, String name )
ArrayList styles = TQStyleFactory.keys();
s = (++s)%styles.size();
- qApp().setStyle( (String) styles.get(s) );
+ tqApp().setStyle( (String) styles.get(s) );
super.button1Clicked();
}
diff --git a/qtjava/javalib/examples/widgets/WidgetView.java b/qtjava/javalib/examples/widgets/WidgetView.java
index 2907f49c..77382908 100644
--- a/qtjava/javalib/examples/widgets/WidgetView.java
+++ b/qtjava/javalib/examples/widgets/WidgetView.java
@@ -243,7 +243,7 @@ WidgetView( TQWidget parent, String name )
+ "about widgets on the screen.");
// Install an application-global event filter to catch control+leftbutton
- qApp().installEventFilter( this );
+ tqApp().installEventFilter( this );
//make a central widget to contain the other widgets
central = new TQWidget( this );
@@ -268,7 +268,7 @@ WidgetView( TQWidget parent, String name )
id = popup.insertItem( new TQIconSet(openIcon), "&Open", this, SLOT(" open()") );
popup.insertSeparator();
- popup.insertItem( "&Quit", qApp(), SLOT("quit()"), new TQKeySequence(CTRL+Key_Q) );
+ popup.insertItem( "&Quit", tqApp(), SLOT("quit()"), new TQKeySequence(CTRL+Key_Q) );
textStylePopup = popup = new TQPopupMenu( this );
@@ -813,13 +813,13 @@ void mySelectionChanged( TQListViewItem item )
void showProperties()
{
- if ( qApp().focusWidget() == null )
+ if ( tqApp().focusWidget() == null )
return;
- String output = "Properties for class '" + qApp().focusWidget().className() + "'";
+ String output = "Properties for class '" + tqApp().focusWidget().className() + "'";
int i = 0;
- while( i < (int) qApp().focusWidget().metaObject().numProperties( true ) ) {
+ while( i < (int) tqApp().focusWidget().metaObject().numProperties( true ) ) {
TQMetaProperty p
- = qApp().focusWidget().metaObject().property( i, true );
+ = tqApp().focusWidget().metaObject().property( i, true );
String tmp = "\n " + (++i) + ": " + p.name()
+ " (read-" + (p.writable() ? "write" : "only") + ", " + p.type() + ")";
output += tmp;
diff --git a/qtjava/javalib/examples/wizard/Wizard.java b/qtjava/javalib/examples/wizard/Wizard.java
index 22a3cb28..c2b140fb 100644
--- a/qtjava/javalib/examples/wizard/Wizard.java
+++ b/qtjava/javalib/examples/wizard/Wizard.java
@@ -31,7 +31,7 @@ Wizard( TQWidget parent, String name )
setupPage2();
setupPage3();
connect(this, SIGNAL("selected(String)"), this, SLOT("doShowPage(String)"));
- connect(finishButton(), SIGNAL("clicked()"), qApp(), SLOT("quit()"));
+ connect(finishButton(), SIGNAL("clicked()"), tqApp(), SLOT("quit()"));
key.setFocus();
}
diff --git a/qtjava/javalib/org/kde/qt/Qt.java b/qtjava/javalib/org/kde/qt/Qt.java
index 24652c64..3c8c8115 100644
--- a/qtjava/javalib/org/kde/qt/Qt.java
+++ b/qtjava/javalib/org/kde/qt/Qt.java
@@ -926,14 +926,14 @@ public class Qt implements QtSupport {
*/
public static native TQDataStream op_write(TQDataStream arg1, TQPen arg2);
public static native TQDataStream op_read(TQDataStream arg1, TQPen arg2);
- public static native int qRed(int rgb);
- public static native int qGreen(int rgb);
- public static native int qBlue(int rgb);
- public static native int qAlpha(int rgb);
- public static native int qRgb(int r, int g, int b);
- public static native int qRgba(int r, int g, int b, int a);
- public static native int qGray(int r, int g, int b);
- public static native int qGray(int rgb);
+ public static native int tqRed(int rgb);
+ public static native int tqGreen(int rgb);
+ public static native int tqBlue(int rgb);
+ public static native int tqAlpha(int rgb);
+ public static native int tqRgb(int r, int g, int b);
+ public static native int tqRgba(int r, int g, int b, int a);
+ public static native int tqGray(int r, int g, int b);
+ public static native int tqGray(int rgb);
/** **************************************************
TQColor stream functions
************************************************** @short TQColor stream functions
@@ -1083,7 +1083,7 @@ public class Qt implements QtSupport {
public static native TQCursor forbiddenCursor(); // forbidden cursor (slashed circle)
public static native TQCursor whatsThisCursor(); // arrow with a question mark
- public static native TQApplication qApp();
+ public static native TQApplication tqApp();
public static native void qDebug(String message);
public static void qDebug(String pattern, Object[] arguments) {
diff --git a/qtjava/javalib/qtjava/Qt.cpp b/qtjava/javalib/qtjava/Qt.cpp
index 5dca1c96..86c6b1df 100644
--- a/qtjava/javalib/qtjava/Qt.cpp
+++ b/qtjava/javalib/qtjava/Qt.cpp
@@ -996,7 +996,7 @@ Java_org_kde_qt_Qt_qAlpha(JNIEnv* env, jclass cls, jint rgb)
{
(void) cls;
(void) env;
- jint xret = (jint) ::qAlpha((TQRgb) rgb);
+ jint xret = (jint) ::tqAlpha((TQRgb) rgb);
return xret;
}
@@ -1014,7 +1014,7 @@ Java_org_kde_qt_Qt_qBlue(JNIEnv* env, jclass cls, jint rgb)
{
(void) cls;
(void) env;
- jint xret = (jint) ::qBlue((TQRgb) rgb);
+ jint xret = (jint) ::tqBlue((TQRgb) rgb);
return xret;
}
@@ -1439,7 +1439,7 @@ Java_org_kde_qt_Qt_qGray__I(JNIEnv* env, jclass cls, jint rgb)
{
(void) cls;
(void) env;
- jint xret = (jint) ::qGray((TQRgb) rgb);
+ jint xret = (jint) ::tqGray((TQRgb) rgb);
return xret;
}
@@ -1448,7 +1448,7 @@ Java_org_kde_qt_Qt_qGray__III(JNIEnv* env, jclass cls, jint r, jint g, jint b)
{
(void) cls;
(void) env;
- jint xret = (jint) ::qGray((int) r, (int) g, (int) b);
+ jint xret = (jint) ::tqGray((int) r, (int) g, (int) b);
return xret;
}
@@ -1457,7 +1457,7 @@ Java_org_kde_qt_Qt_qGreen(JNIEnv* env, jclass cls, jint rgb)
{
(void) cls;
(void) env;
- jint xret = (jint) ::qGreen((TQRgb) rgb);
+ jint xret = (jint) ::tqGreen((TQRgb) rgb);
return xret;
}
@@ -1604,7 +1604,7 @@ Java_org_kde_qt_Qt_qRed(JNIEnv* env, jclass cls, jint rgb)
{
(void) cls;
(void) env;
- jint xret = (jint) ::qRed((TQRgb) rgb);
+ jint xret = (jint) ::tqRed((TQRgb) rgb);
return xret;
}
@@ -1613,7 +1613,7 @@ Java_org_kde_qt_Qt_qRgb(JNIEnv* env, jclass cls, jint r, jint g, jint b)
{
(void) cls;
(void) env;
- jint xret = (jint) ::qRgb((int) r, (int) g, (int) b);
+ jint xret = (jint) ::tqRgb((int) r, (int) g, (int) b);
return xret;
}
@@ -1622,7 +1622,7 @@ Java_org_kde_qt_Qt_qRgba(JNIEnv* env, jclass cls, jint r, jint g, jint b, jint a
{
(void) cls;
(void) env;
- jint xret = (jint) ::qRgba((int) r, (int) g, (int) b, (int) a);
+ jint xret = (jint) ::tqRgba((int) r, (int) g, (int) b, (int) a);
return xret;
}
@@ -1990,7 +1990,7 @@ JNIEXPORT jobject JNICALL
Java_org_kde_qt_Qt_qApp(JNIEnv* env, jclass cls)
{
(void) cls;
- return (jobject) QtSupport::objectForQtKey(env, qApp, "org.kde.qt.TQApplication");
+ return (jobject) QtSupport::objectForQtKey(env, tqApp, "org.kde.qt.TQApplication");
}
JNIEXPORT void JNICALL
diff --git a/qtjava/javalib/test/ScribbleWindow.java b/qtjava/javalib/test/ScribbleWindow.java
index abad9d30..61806b42 100644
--- a/qtjava/javalib/test/ScribbleWindow.java
+++ b/qtjava/javalib/test/ScribbleWindow.java
@@ -170,7 +170,7 @@ public class ScribbleWindow extends TQWidget {
_filemenu.insertItem( "&Load", this, SLOT( "slotLoad()" ) );
_filemenu.insertItem( "&Save", this, SLOT( "slotSave()" ) );
_filemenu.insertSeparator();
- _filemenu.insertItem( "&Quit", qApp(), SLOT( "quit()" ) );
+ _filemenu.insertItem( "&Quit", tqApp(), SLOT( "quit()" ) );
_colormenu = new TQPopupMenu(); // create a color menu
_colormenu.insertItem( "B&lack", COLOR_MENU_ID_BLACK);
diff --git a/qtjava/javalib/tutorial/t10/Tut10.java b/qtjava/javalib/tutorial/t10/Tut10.java
index e85ef731..beecacc2 100644
--- a/qtjava/javalib/tutorial/t10/Tut10.java
+++ b/qtjava/javalib/tutorial/t10/Tut10.java
@@ -5,7 +5,7 @@ public class Tut10 extends TQWidget {
TQPushButton quit = new TQPushButton("&Quit", this, "quit");
quit.setFont(new TQFont("Times", 18, TQFont.Bold, false));
- connect(quit, SIGNAL("clicked()"), qApp(), SLOT("quit()"));
+ connect(quit, SIGNAL("clicked()"), tqApp(), SLOT("quit()"));
LCDRange angle = new LCDRange(this, "angle");
angle.setRange(5, 70);
diff --git a/qtjava/javalib/tutorial/t11/Tut11.java b/qtjava/javalib/tutorial/t11/Tut11.java
index 854a5b0f..1f7b3451 100644
--- a/qtjava/javalib/tutorial/t11/Tut11.java
+++ b/qtjava/javalib/tutorial/t11/Tut11.java
@@ -5,7 +5,7 @@ public class Tut11 extends TQWidget {
TQPushButton quit = new TQPushButton("&Quit", this, "quit");
quit.setFont(new TQFont("Times", 18, TQFont.Bold, false));
- connect(quit, SIGNAL("clicked()"), qApp(), SLOT("quit()"));
+ connect(quit, SIGNAL("clicked()"), tqApp(), SLOT("quit()"));
LCDRange angle = new LCDRange(this, "angle");
angle.setRange(5, 70);
diff --git a/qtjava/javalib/tutorial/t12/Tut12.java b/qtjava/javalib/tutorial/t12/Tut12.java
index 4bf347fd..f0044836 100644
--- a/qtjava/javalib/tutorial/t12/Tut12.java
+++ b/qtjava/javalib/tutorial/t12/Tut12.java
@@ -5,7 +5,7 @@ public class Tut12 extends TQWidget {
TQPushButton quit = new TQPushButton("&Quit", this, "quit");
quit.setFont(new TQFont("Times", 18, TQFont.Bold, false));
- connect(quit, SIGNAL("clicked()"), qApp(), SLOT("quit()"));
+ connect(quit, SIGNAL("clicked()"), tqApp(), SLOT("quit()"));
LCDRange angle = new LCDRange("ANGLE", this, "angle");
angle.setRange(5, 70);
diff --git a/qtjava/javalib/tutorial/t13/GameBoard.java b/qtjava/javalib/tutorial/t13/GameBoard.java
index 5ba2579e..efde663c 100644
--- a/qtjava/javalib/tutorial/t13/GameBoard.java
+++ b/qtjava/javalib/tutorial/t13/GameBoard.java
@@ -9,7 +9,7 @@ public class GameBoard extends TQWidget {
TQPushButton quit = new TQPushButton("&Quit", this, "quit");
quit.setFont(new TQFont("Times", 18, TQFont.Bold, false));
- connect(quit, SIGNAL("clicked()"), qApp(), SLOT("quit()"));
+ connect(quit, SIGNAL("clicked()"), tqApp(), SLOT("quit()"));
LCDRange angle = new LCDRange("ANGLE", this, "angle");
angle.setRange(5, 70);
diff --git a/qtjava/javalib/tutorial/t14/GameBoard.java b/qtjava/javalib/tutorial/t14/GameBoard.java
index 571e902e..95783df5 100644
--- a/qtjava/javalib/tutorial/t14/GameBoard.java
+++ b/qtjava/javalib/tutorial/t14/GameBoard.java
@@ -10,7 +10,7 @@ public class GameBoard extends TQWidget {
TQPushButton quit = new TQPushButton("&Quit", this, "quit");
quit.setFont(new TQFont("Times", 18, TQFont.Bold, false));
- connect(quit, SIGNAL("clicked()"), qApp(), SLOT("quit()"));
+ connect(quit, SIGNAL("clicked()"), tqApp(), SLOT("quit()"));
LCDRange angle = new LCDRange("ANGLE", this, "angle");
angle.setRange(5, 70);
@@ -56,11 +56,11 @@ public class GameBoard extends TQWidget {
TQAccel accel = new TQAccel(this);
accel.connectItem(accel.insertItem(new TQKeySequence(Key_Enter)), this, SLOT("fire()"));
accel.connectItem(accel.insertItem(new TQKeySequence(Key_Return)), this, SLOT("fire()"));
- accel.connectItem(accel.insertItem(new TQKeySequence(CTRL+Key_Q)), qApp(), SLOT("quit()"));
+ accel.connectItem(accel.insertItem(new TQKeySequence(CTRL+Key_Q)), tqApp(), SLOT("quit()"));
/***
accel.connectItem(accel.insertItem(Key_Enter), this, SLOT("fire()"));
accel.connectItem(accel.insertItem(Key_Return), this, SLOT("fire()"));
- accel.connectItem(accel.insertItem(CTRL+Key_Q), qApp(), SLOT("quit()"));
+ accel.connectItem(accel.insertItem(CTRL+Key_Q), tqApp(), SLOT("quit()"));
***/
TQGridLayout grid = new TQGridLayout(this, 2, 2, 10, -1, null);
grid.addWidget(quit, 0, 0);
diff --git a/qtjava/javalib/tutorial/t4/Tut4.java b/qtjava/javalib/tutorial/t4/Tut4.java
index 3cb9393c..a8cb1f01 100644
--- a/qtjava/javalib/tutorial/t4/Tut4.java
+++ b/qtjava/javalib/tutorial/t4/Tut4.java
@@ -9,7 +9,7 @@ public class Tut4 extends TQWidget {
quit.setGeometry(62, 40, 75, 30);
quit.setFont(new TQFont("Times", 18, TQFont.Bold, false));
- connect(quit, SIGNAL("clicked()"), qApp(), SLOT("quit()"));
+ connect(quit, SIGNAL("clicked()"), tqApp(), SLOT("quit()"));
}
public static void main(String[] args) {
diff --git a/qtjava/javalib/tutorial/t5/Tut5.java b/qtjava/javalib/tutorial/t5/Tut5.java
index 7b3fa60a..335a03fc 100644
--- a/qtjava/javalib/tutorial/t5/Tut5.java
+++ b/qtjava/javalib/tutorial/t5/Tut5.java
@@ -5,7 +5,7 @@ public class Tut5 extends TQVBox {
TQPushButton quit = new TQPushButton("Quit", this, "quit");
quit.setFont(new TQFont("Times", 18, TQFont.Bold, false));
- connect(quit, SIGNAL("clicked()"), qApp(), SLOT("quit()"));
+ connect(quit, SIGNAL("clicked()"), tqApp(), SLOT("quit()"));
TQLCDNumber lcd = new TQLCDNumber(2, this, "lcd");
diff --git a/qtjava/javalib/tutorial/t6/Tut6.java b/qtjava/javalib/tutorial/t6/Tut6.java
index b93807cc..7945012b 100644
--- a/qtjava/javalib/tutorial/t6/Tut6.java
+++ b/qtjava/javalib/tutorial/t6/Tut6.java
@@ -5,7 +5,7 @@ public class Tut6 extends TQVBox {
TQPushButton quit = new TQPushButton("Quit", this, "quit");
quit.setFont(new TQFont("Times", 18, TQFont.Bold, false));
- connect(quit, SIGNAL("clicked()"), qApp(), SLOT("quit()"));
+ connect(quit, SIGNAL("clicked()"), tqApp(), SLOT("quit()"));
TQGrid grid = new TQGrid(4, this, null, 0);
diff --git a/qtjava/javalib/tutorial/t7/Tut7.java b/qtjava/javalib/tutorial/t7/Tut7.java
index dbcf653c..657b5398 100644
--- a/qtjava/javalib/tutorial/t7/Tut7.java
+++ b/qtjava/javalib/tutorial/t7/Tut7.java
@@ -5,7 +5,7 @@ public class Tut7 extends TQVBox {
TQPushButton quit = new TQPushButton("Quit", this, "quit");
quit.setFont(new TQFont("Times", 18, TQFont.Bold, false));
- connect(quit, SIGNAL("clicked()"), qApp(), SLOT("quit()"));
+ connect(quit, SIGNAL("clicked()"), tqApp(), SLOT("quit()"));
TQGrid grid = new TQGrid(4, this, null, 0);
diff --git a/qtjava/javalib/tutorial/t8/Tut8.java b/qtjava/javalib/tutorial/t8/Tut8.java
index 9cc4fa9f..f51cccd0 100644
--- a/qtjava/javalib/tutorial/t8/Tut8.java
+++ b/qtjava/javalib/tutorial/t8/Tut8.java
@@ -5,7 +5,7 @@ public class Tut8 extends TQWidget {
TQPushButton quit = new TQPushButton("Quit", this, "quit");
quit.setFont(new TQFont("Times", 18, TQFont.Bold, false));
- connect(quit, SIGNAL("clicked()"), qApp(), SLOT("quit()"));
+ connect(quit, SIGNAL("clicked()"), tqApp(), SLOT("quit()"));
LCDRange angle = new LCDRange(this, "angle");
angle.setRange(5, 70);
diff --git a/qtjava/javalib/tutorial/t9/Tut9.java b/qtjava/javalib/tutorial/t9/Tut9.java
index 71531698..19219c29 100644
--- a/qtjava/javalib/tutorial/t9/Tut9.java
+++ b/qtjava/javalib/tutorial/t9/Tut9.java
@@ -5,7 +5,7 @@ public class Tut9 extends TQWidget {
TQPushButton quit = new TQPushButton("Quit", this, "quit");
quit.setFont(new TQFont("Times", 18, TQFont.Bold, false));
- connect(quit, SIGNAL("clicked()"), qApp(), SLOT("quit()"));
+ connect(quit, SIGNAL("clicked()"), tqApp(), SLOT("quit()"));
LCDRange angle = new LCDRange(this, "angle");
angle.setRange(5, 70);
diff --git a/qtruby/rubylib/qtruby/Qt.cpp b/qtruby/rubylib/qtruby/Qt.cpp
index 1a7bd7d9..0c33796f 100644
--- a/qtruby/rubylib/qtruby/Qt.cpp
+++ b/qtruby/rubylib/qtruby/Qt.cpp
@@ -1759,8 +1759,8 @@ qapplication_argv(VALUE /*self*/)
{
VALUE result = rb_ary_new();
// Drop argv[0], as it isn't included in the ruby global ARGV
- for (int index = 1; index < qApp->argc(); index++) {
- rb_ary_push(result, rb_str_new2(qApp->argv()[index]));
+ for (int index = 1; index < tqApp->argc(); index++) {
+ rb_ary_push(result, rb_str_new2(tqApp->argv()[index]));
}
return result;
diff --git a/qtsharp/src/bindings/static/TQObject.cs b/qtsharp/src/bindings/static/TQObject.cs
index 2df22d50..1ef8c354 100644
--- a/qtsharp/src/bindings/static/TQObject.cs
+++ b/qtsharp/src/bindings/static/TQObject.cs
@@ -43,7 +43,7 @@ namespace Qt {
private QtSignalMap csSignalMap;
private QtSignalMap cppSignalMap;
- public static TQApplication qApp {
+ public static TQApplication tqApp {
get {return qapp;}
set {qapp = value;}
}
diff --git a/qtsharp/src/examples/samples/display.cs b/qtsharp/src/examples/samples/display.cs
index 9f2f4939..daf8daa0 100644
--- a/qtsharp/src/examples/samples/display.cs
+++ b/qtsharp/src/examples/samples/display.cs
@@ -26,7 +26,7 @@ namespace QtSamples {
public Display ()
{
filemenu = new TQPopupMenu (null, "filemenu");
- filemenu.InsertItem ("&Quit", qApp, TQT_SLOT ("quit()"));
+ filemenu.InsertItem ("&Quit", tqApp, TQT_SLOT ("quit()"));
aboutmenu = new TQPopupMenu(null, "aboutmenu");
aboutmenu.InsertItem("&About Qt-Sharp", this, TQT_SLOT("slotAbout()"));
diff --git a/qtsharp/src/examples/samples/quantumfractals.cs b/qtsharp/src/examples/samples/quantumfractals.cs
index 9303b831..3020eae6 100644
--- a/qtsharp/src/examples/samples/quantumfractals.cs
+++ b/qtsharp/src/examples/samples/quantumfractals.cs
@@ -39,7 +39,7 @@ namespace Qf {
filemenu = new TQPopupMenu (null, "filemenu");
filemenu.InsertItem ("&Screenshot", display, TQT_SLOT ("SlotScreenshot()"));
filemenu.InsertSeparator ();
- filemenu.InsertItem ("&Quit", qApp, TQT_SLOT ("quit()"));
+ filemenu.InsertItem ("&Quit", tqApp, TQT_SLOT ("quit()"));
//Setup the shapemenu
shapemenu = new TQPopupMenu (null, "typemenu");
@@ -156,7 +156,7 @@ namespace Qf {
this, TQT_SLOT ("SlotIntense()"));
TQObject.Connect (buffer, TQT_SIGNAL ("Painted()"),
this, TQT_SLOT ("SlotSetLabels()"));
- TQObject.Connect (qApp, TQT_SIGNAL ("lastWindowClosed ()"),
+ TQObject.Connect (tqApp, TQT_SIGNAL ("lastWindowClosed ()"),
this, TQT_SLOT ("SlotQuit ()"));
//Layout labels
diff --git a/qtsharp/src/examples/samples/scribblewindow.cs b/qtsharp/src/examples/samples/scribblewindow.cs
index 4013c355..405b0e31 100644
--- a/qtsharp/src/examples/samples/scribblewindow.cs
+++ b/qtsharp/src/examples/samples/scribblewindow.cs
@@ -39,7 +39,7 @@ namespace QtSamples {
filemenu.InsertItem ("&Load", this, TQT_SLOT ("SlotLoad()") );
filemenu.InsertItem ("&Save", this, TQT_SLOT ("SlotSave()") );
filemenu.InsertSeparator ();
- filemenu.InsertItem ("&Quit", qApp, TQT_SLOT ("quit()"));
+ filemenu.InsertItem ("&Quit", tqApp, TQT_SLOT ("quit()"));
aboutmenu = new TQPopupMenu (null, "helpmenu");
aboutmenu.InsertItem ("&About Qt-Sharp", this, TQT_SLOT ("SlotAboutQtSharp()"));
diff --git a/qtsharp/src/examples/tutorials/t4.cs b/qtsharp/src/examples/tutorials/t4.cs
index e868cc7e..b3e66a07 100644
--- a/qtsharp/src/examples/tutorials/t4.cs
+++ b/qtsharp/src/examples/tutorials/t4.cs
@@ -17,8 +17,8 @@ public class MyWidget : TQWidget {
quit.SetGeometry (62, 40, 75, 30);
quit.SetFont (new TQFont ("Times", 18, TQFont.Weight.Bold) );
- Connect ( quit, TQT_SIGNAL ("clicked()"), qApp, TQT_SLOT ("Quit()") );
- // In C++, qApp is a global variable. Here it's a property of the TQObject
+ Connect ( quit, TQT_SIGNAL ("clicked()"), tqApp, TQT_SLOT ("Quit()") );
+ // In C++, tqApp is a global variable. Here it's a property of the TQObject
// class, which we inherit, giving the same effect. We also inherit the
// static method connect().
}
diff --git a/qtsharp/src/examples/tutorials/t5.cs b/qtsharp/src/examples/tutorials/t5.cs
index 0488969d..05ff5e96 100644
--- a/qtsharp/src/examples/tutorials/t5.cs
+++ b/qtsharp/src/examples/tutorials/t5.cs
@@ -13,7 +13,7 @@ public class MyWidget : TQVBox {
TQPushButton quit = new TQPushButton ("Quit", this, "quit");
quit.SetFont ( new TQFont ("Times", 18, TQFont.Weight.Bold) );
- TQObject.Connect ( quit, TQT_SIGNAL ("clicked()"), qApp, TQT_SLOT ("Quit()") );
+ TQObject.Connect ( quit, TQT_SIGNAL ("clicked()"), tqApp, TQT_SLOT ("Quit()") );
TQLCDNumber lcd = new TQLCDNumber (2, this, "lcd" );
diff --git a/qtsharp/src/examples/tutorials/t6.cs b/qtsharp/src/examples/tutorials/t6.cs
index 6fee48e1..910d13d1 100644
--- a/qtsharp/src/examples/tutorials/t6.cs
+++ b/qtsharp/src/examples/tutorials/t6.cs
@@ -31,7 +31,7 @@ public class MyWidget : TQVBox {
TQPushButton quit = new TQPushButton ("Quit", this, "quit");
quit.SetFont ( new TQFont ("Times", 18, TQFont.Weight.Bold) );
- Connect ( quit, TQT_SIGNAL ("clicked()"), qApp, TQT_SLOT ("Quit()") );
+ Connect ( quit, TQT_SIGNAL ("clicked()"), tqApp, TQT_SLOT ("Quit()") );
TQGrid grid = new TQGrid (4, this);
diff --git a/qtsharp/src/examples/tutorials/t7.cs b/qtsharp/src/examples/tutorials/t7.cs
index e1891d26..1372bf15 100644
--- a/qtsharp/src/examples/tutorials/t7.cs
+++ b/qtsharp/src/examples/tutorials/t7.cs
@@ -43,7 +43,7 @@ public class MyWidget : TQVBox {
TQPushButton quit = new TQPushButton ("Quit", this, "quit");
quit.SetFont ( new TQFont ("Times", 18, TQFont.Weight.Bold) );
- Connect ( quit, TQT_SIGNAL ("clicked()"), qApp, TQT_SLOT ("Quit()") );
+ Connect ( quit, TQT_SIGNAL ("clicked()"), tqApp, TQT_SLOT ("Quit()") );
TQGrid grid = new TQGrid (4, this);