diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-10-20 14:40:51 +0200 |
---|---|---|
committer | gregory guy <gregory-tde@laposte.net> | 2021-01-13 18:12:31 +0100 |
commit | 81b64bcfc0a32fdeb0e4f367adbf273d924e55f4 (patch) | |
tree | 9e0903eb2b5cc19a7dcf4874d098a29133d3163c /src/crashhandler.cpp | |
parent | 8b4f72aa0753110a46db9195216f3c88e14a9b69 (diff) | |
download | tork-81b64bcfc0a32fdeb0e4f367adbf273d924e55f4.tar.gz tork-81b64bcfc0a32fdeb0e4f367adbf273d924e55f4.zip |
Conversion to the cmake building system.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'src/crashhandler.cpp')
-rw-r--r-- | src/crashhandler.cpp | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/src/crashhandler.cpp b/src/crashhandler.cpp index db161b1..3deb9a6 100644 --- a/src/crashhandler.cpp +++ b/src/crashhandler.cpp @@ -10,9 +10,10 @@ * * ***************************************************************************/ -#include "tork.h" -#include "torkconfig.h" -#include "crashhandler.h" +#include <tqfile.h> +#include <tqregexp.h> +#include <tqtextstream.h> +#include <tqglobal.h> //tqVersion() #include <tdeapplication.h> //invokeMailer() #include <kdebug.h> //kdBacktrace() @@ -20,19 +21,15 @@ #include <tdelocale.h> #include <tdetempfile.h> -#include <ntqfile.h> -#include <ntqregexp.h> -#include <ntqtextstream.h> -#include <ntqglobal.h> //tqVersion() - #include <cstdio> //popen, fread #include <iostream> #include <sys/types.h> //pid_t #include <sys/wait.h> //waitpid #include <unistd.h> //write, getpid - - +#include "tork.h" +#include "torkconfig.h" +#include "crashhandler.h" namespace torK @@ -245,14 +242,16 @@ namespace torK #if 0 -#include <ntqlabel.h> -#include <ntqlayout.h> -#include <ntqvbox.h> +#include <tqlabel.h> +#include <tqlayout.h> +#include <tqvbox.h> + #include <kdialog.h> #include <kpushbutton.h> #include <kstdguiitem.h> #include <kstandarddirs.h> + torK::CrashHandlerWidget::CrashHandlerWidget() { TQBoxLayout *layout = new TQHBoxLayout( this, 18, 12 ); |