From f008adb5a77e094eaf6abf3fc0f36958e66896a5 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 25 Jun 2011 05:28:35 +0000 Subject: TQt4 port koffice This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kexi/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kexi/main.cpp') diff --git a/kexi/main.cpp b/kexi/main.cpp index d299e3cb..1c61d4e5 100644 --- a/kexi/main.cpp +++ b/kexi/main.cpp @@ -22,16 +22,16 @@ * Boston, MA 02110-1301, USA. */ -#include +#include #include
extern "C" int kdemain(int argc, char *argv[]) { int result = KexiMainWindowImpl::create(argc, argv); - if (!qApp) + if (!tqApp) return result; - result = qApp->exec(); - delete qApp; + result = tqApp->exec(); + delete tqApp; return result; } -- cgit v1.2.1