diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 16:20:48 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 16:20:48 -0600 |
commit | e63beeb5bdb82987b1e00bc35178667786fbad48 (patch) | |
tree | ab77b6ac830b7944d5d1eb9ce8f81feb8fdab948 /qtsharp/src/examples/tutorials/t4.cs | |
parent | 67557a2b56c0678c22ab1b00c4fd0224c5e9ed99 (diff) | |
download | tdebindings-e63beeb5bdb82987b1e00bc35178667786fbad48.tar.gz tdebindings-e63beeb5bdb82987b1e00bc35178667786fbad48.zip |
Fix incorrect conversion
Diffstat (limited to 'qtsharp/src/examples/tutorials/t4.cs')
-rw-r--r-- | qtsharp/src/examples/tutorials/t4.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/qtsharp/src/examples/tutorials/t4.cs b/qtsharp/src/examples/tutorials/t4.cs index 68b3c26a..e868cc7e 100644 --- a/qtsharp/src/examples/tutorials/t4.cs +++ b/qtsharp/src/examples/tutorials/t4.cs @@ -5,17 +5,17 @@ using System; using Qt; -public class MyWidget : TTQWidget { +public class MyWidget : TQWidget { - public MyWidget (TTQWidget parent, String name) : base (parent, name) + public MyWidget (TQWidget parent, String name) : base (parent, name) // In C++, parent and name have default values of 0 (null pointer) { this.SetMinimumSize (200, 120); this.SetMaximumSize (200, 120); - TTQPushButton quit = new TTQPushButton ("Quit", this, "quit"); + TQPushButton quit = new TQPushButton ("Quit", this, "quit"); quit.SetGeometry (62, 40, 75, 30); - quit.SetFont (new TTQFont ("Times", 18, TTQFont.Weight.Bold) ); + 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 @@ -23,7 +23,7 @@ public class MyWidget : TTQWidget { // static method connect(). } - public MyWidget (TTQWidget parent) : this (parent, "") {} + public MyWidget (TQWidget parent) : this (parent, "") {} public MyWidget () : this (null, "") {} // Note that it was necessary to use an empty string ("") // in the above. Using null does not work at runtime. @@ -33,7 +33,7 @@ public class Example { public static int Main (String[] args) { - TTQApplication a = new TTQApplication (args); + TQApplication a = new TQApplication (args); MyWidget w = new MyWidget (); w.SetGeometry (100, 100, 200, 120); |