diff options
Diffstat (limited to 'src/piklab-prog/cli_interactive.cpp')
-rw-r--r-- | src/piklab-prog/cli_interactive.cpp | 4 |
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() |