diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 11:29:06 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-14 20:32:49 +0900 |
| commit | 1eb017313b2ebc441dfc81e73a5d6573d03ea08d (patch) | |
| tree | 8d37ac85ad8a529697fc81479852a039de534b8e /qtsharp/src/examples/samples/emit.cs | |
| parent | 673e65a4a15e713643f4bb804f7af6dfdaa0d6d6 (diff) | |
| download | tdebindings-1eb01731.tar.gz tdebindings-1eb01731.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit faf33629bb6562a6f43f930afafe4b22e9cdb60b)
Diffstat (limited to 'qtsharp/src/examples/samples/emit.cs')
| -rw-r--r-- | qtsharp/src/examples/samples/emit.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qtsharp/src/examples/samples/emit.cs b/qtsharp/src/examples/samples/emit.cs index 125166a2..08a27555 100644 --- a/qtsharp/src/examples/samples/emit.cs +++ b/qtsharp/src/examples/samples/emit.cs @@ -13,8 +13,8 @@ namespace QtSamples { { TQPushButton pb = new TQPushButton ("Papa Smurf", this); - Connect (pb, TQT_SIGNAL ("clicked ()"), TQT_SLOT ("DoEmit ()")); - Connect (this, TQT_SIGNAL ("MySignal ()"), TQT_SLOT ("PrintStuff ()")); + Connect (pb, TQ_SIGNAL ("clicked ()"), TQ_SLOT ("DoEmit ()")); + Connect (this, TQ_SIGNAL ("MySignal ()"), TQ_SLOT ("PrintStuff ()")); } public void DoEmit () |
