diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
commit | 9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch) | |
tree | c81c34dae2b3b1ea73801bf18a960265dc4207f7 /qtsharp/src/examples/tutorials/t2.cs | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'qtsharp/src/examples/tutorials/t2.cs')
-rw-r--r-- | qtsharp/src/examples/tutorials/t2.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qtsharp/src/examples/tutorials/t2.cs b/qtsharp/src/examples/tutorials/t2.cs index 5dbe07d1..84af5a37 100644 --- a/qtsharp/src/examples/tutorials/t2.cs +++ b/qtsharp/src/examples/tutorials/t2.cs @@ -9,16 +9,16 @@ public class Example { public static int Main (String[] args) { - TQApplication a = new TQApplication (args); + TTQApplication a = new TTQApplication (args); - TQPushButton quit = new TQPushButton ("Quit", null); + TTQPushButton quit = new TTQPushButton ("Quit", null); // In C++, the second parameter is 0 (null pointer) quit.Resize (75, 30); - quit.SetFont (new TQFont ("Times", 18, TQFont.Weight.Bold)); - // In C++, TQFont::Bold is sufficient + quit.SetFont (new TTQFont ("Times", 18, TTQFont.Weight.Bold)); + // In C++, TTQFont::Bold is sufficient - TQObject.Connect ( quit, QtSupport.TQT_SIGNAL ("clicked()"), a, QtSupport.TQT_SLOT ("Quit()") ); + TTQObject.Connect ( quit, QtSupport.TQT_SIGNAL ("clicked()"), a, QtSupport.TQT_SLOT ("Quit()") ); // TQT_SIGNAL and TQT_SLOT are static functions of QtSupport a.SetMainWidget (quit); |