summaryrefslogtreecommitdiffstats
path: root/src/piklab-prog/cli_interactive.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-29 16:42:37 +0900
committerMichele Calgaro <[email protected]>2023-12-31 22:22:08 +0900
commitf3f67ab73137aa1ce1bc14753cc0e09a1b44f9bd (patch)
tree49b5284de3c34fa5beb84bd52110e7e1cdba826d /src/piklab-prog/cli_interactive.cpp
parent26bcb362b66b78984c0c7567d00c12f3425d6468 (diff)
downloadpiklab-f3f67ab73137aa1ce1bc14753cc0e09a1b44f9bd.tar.gz
piklab-f3f67ab73137aa1ce1bc14753cc0e09a1b44f9bd.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit c679361a50aee162491e7195f2bcfdbbf341dde5)
Diffstat (limited to 'src/piklab-prog/cli_interactive.cpp')
-rw-r--r--src/piklab-prog/cli_interactive.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/piklab-prog/cli_interactive.cpp b/src/piklab-prog/cli_interactive.cpp
index 40adb2c..ecf486a 100644
--- a/src/piklab-prog/cli_interactive.cpp
+++ b/src/piklab-prog/cli_interactive.cpp
@@ -84,7 +84,7 @@ CLI::Interactive::Interactive(TQObject *parent)
#else
_stdin.open(IO_ReadOnly, stdin);
#endif
- TQTimer::singleShot(0, this, TQT_SLOT(displayPrompt()));
+ TQTimer::singleShot(0, this, TQ_SLOT(displayPrompt()));
}
void CLI::Interactive::redisplayPrompt()
@@ -231,7 +231,7 @@ void CLI::Interactive::lineRead()
tqApp->exit(OK);
return;
}
- TQTimer::singleShot(0, this, TQT_SLOT(displayPrompt()));
+ TQTimer::singleShot(0, this, TQ_SLOT(displayPrompt()));
}
CLI::ExitCode CLI::Interactive::registerList()