diff options
Diffstat (limited to 'blinken/src/main.cpp')
-rw-r--r-- | blinken/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/blinken/src/main.cpp b/blinken/src/main.cpp index c013c752..3589cd58 100644 --- a/blinken/src/main.cpp +++ b/blinken/src/main.cpp @@ -10,8 +10,8 @@ #include <tdeaboutdata.h> #include <tdeapplication.h> #include <tdecmdlineargs.h> -#include <kprocess.h> -#include <kstandarddirs.h> +#include <tdeprocess.h> +#include <tdestandarddirs.h> #include "fontchecker.h" #include "blinken.h" @@ -24,7 +24,7 @@ int main(int argc, char *argv[]) about.addCredit("Steve Jordi", I18N_NOOP("GPL'ed his 'Steve' font so that we could use it"), "steve@sjordi.com"); TDECmdLineArgs::init(argc, argv, &about); TDEApplication app; - app.connect(&app, TQT_SIGNAL(lastWindowClosed()), &app, TQT_SLOT(quit())); + app.connect(&app, TQ_SIGNAL(lastWindowClosed()), &app, TQ_SLOT(quit())); TQFont f("Steve", 12, TQFont::Normal, true); if (!fontChecker::checkInstalled(f, locate("appdata", "fonts/steve.ttf"))) |