summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/examples/widgets
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 /qtjava/javalib/examples/widgets
parent6d5f6f30f0236920737b74261e664fdaab90c33c (diff)
downloadtdebindings-ef5a04df564ad5c27406c41fb55e32ad3aa39d25.tar.gz
tdebindings-ef5a04df564ad5c27406c41fb55e32ad3aa39d25.zip
Rename tqt3 color functions
Diffstat (limited to 'qtjava/javalib/examples/widgets')
-rw-r--r--qtjava/javalib/examples/widgets/MyWidgetView.java2
-rw-r--r--qtjava/javalib/examples/widgets/WidgetView.java12
2 files changed, 7 insertions, 7 deletions
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;