diff options
Diffstat (limited to 'qtsharp/src/examples/samples/emit.cs')
-rw-r--r-- | qtsharp/src/examples/samples/emit.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/qtsharp/src/examples/samples/emit.cs b/qtsharp/src/examples/samples/emit.cs index e9c3c40a..125166a2 100644 --- a/qtsharp/src/examples/samples/emit.cs +++ b/qtsharp/src/examples/samples/emit.cs @@ -6,15 +6,15 @@ namespace QtSamples { using Qt; [DeclareQtSignal ("MySignal()")] - public class EmitSample: QVBox { + public class EmitSample: TQVBox { public EmitSample (): this (null, "") {} - public EmitSample (QWidget parent, string name): base () + public EmitSample (TQWidget parent, string name): base () { - QPushButton pb = new QPushButton ("Papa Smurf", this); + TQPushButton pb = new TQPushButton ("Papa Smurf", this); - Connect (pb, SIGNAL ("clicked ()"), SLOT ("DoEmit ()")); - Connect (this, SIGNAL ("MySignal ()"), SLOT ("PrintStuff ()")); + Connect (pb, TQT_SIGNAL ("clicked ()"), TQT_SLOT ("DoEmit ()")); + Connect (this, TQT_SIGNAL ("MySignal ()"), TQT_SLOT ("PrintStuff ()")); } public void DoEmit () @@ -29,7 +29,7 @@ namespace QtSamples { public static int Main (string[] args) { - QApplication app = new QApplication (args); + TQApplication app = new TQApplication (args); EmitSample es = new EmitSample (); app.SetMainWidget (es); es.Show (); |