From kde-commits Wed Sep 13 19:22:14 2006 From: Ian Reinhart Geiser Date: Wed, 13 Sep 2006 19:22:14 +0000 To: kde-commits Subject: branches/kdevelop/3.4/languages/cpp/app_templates Message-Id: <1158175334.942473.8647.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=115817534306338 SVN commit 583910 by geiseri: Polish, but now it works. M +1 -1 Makefile.am M +1 -1 cpp.appwizard M +2 -2 qt4hello/main.cpp A qt4hello/qt4hello.kdevelop qt4hello/qt4makeapp.kdevelop#583866 A qt4hello/qt4hello.kdevtemplate qt4hello/qt4makeapp.kdevtemplate#583866 A qt4hello/qt4hello.png qt4hello/qt4makeapp.png#583866 A qt4hello/qt4hello.pro qt4hello/qt4makeapp.pro#583866 D qt4hello/qt4makeapp D qt4hello/qt4makeapp.kdevelop D qt4hello/qt4makeapp.kdevtemplate D qt4hello/qt4makeapp.png D qt4hello/qt4makeapp.pro --- branches/kdevelop/3.4/languages/cpp/app_templates/Makefile.am #583909:583910 @@ -1,4 +1,4 @@ -SUBDIRS = kapp kpartapp kpartplugin kcmodule kicker kioslave kdevpart kdevpart2 chello cpphello kscreensaver kofficepart chello_gba dcopservice konqnavpanel qmakesimple qmakeapp qt4makeapp khello khello2 kateplugin kateplugin2 qtopiaapp kdedcop wxhello cppsdlhello kconfig35 kdevlang noatunvisual noatunui kmod kfileplugin clanlib opieapp opieapplet opieinput opiemenu opienet opietoday kxt gtk2mmapp cppcurseshello win32hello win32gui cmakesimple cmakesimplec cmakelibcpp cmakelibc kscons_kxt kscons_kmdi +SUBDIRS = kapp kpartapp kpartplugin kcmodule kicker kioslave kdevpart kdevpart2 chello cpphello kscreensaver kofficepart chello_gba dcopservice konqnavpanel qmakesimple qmakeapp qt4makeapp khello khello2 kateplugin kateplugin2 qtopiaapp kdedcop wxhello cppsdlhello kconfig35 kdevlang noatunvisual noatunui kmod kfileplugin clanlib opieapp opieapplet opieinput opiemenu opienet opietoday kxt gtk2mmapp cppcurseshello win32hello win32gui cmakesimple cmakesimplec cmakelibcpp cmakelibc kscons_kxt kscons_kmdi qt4hello profilescdir = $(kde_datadir)/kdevelop/profiles/IDE/CompiledLanguageIDE/CandCppIDE/CIDE profilesc_DATA = c.appwizard --- branches/kdevelop/3.4/languages/cpp/app_templates/cpp.appwizard #583909:583910 @@ -1,2 +1,2 @@ [General] -List=opiemenu,win32hello,cppcurseshello,gtk2mmapp,opienet,wxhello,cpphello,opietoday,clanlib,cppsdlhello,qmakeapp,qt4makeapp,cmakelibcpp,opieapp,qmakesimple,cmakesimple,generichello,opieapplet,qtopiaapp,gnome2mmapp,opieinput,win32gui,cmakeqt3app +List=opiemenu,win32hello,cppcurseshello,gtk2mmapp,opienet,wxhello,cpphello,opietoday,clanlib,cppsdlhello,qmakeapp,qt4hello,qt4makeapp,cmakelibcpp,opieapp,qmakesimple,cmakesimple,generichello,opieapplet,qtopiaapp,gnome2mmapp,opieinput,win32gui,cmakeqt3app --- branches/kdevelop/3.4/languages/cpp/app_templates/qt4hello/main.cpp #583909:583910 @@ -1,11 +1,11 @@ %{CPP_TEMPLATE} #include -#include "%{APPNAMELC}.h" int main(int argc, char *argv[]) { QCoreApplication app(argc, argv); - return app.exec(); + qDebug("Hello from Qt 4!"); + return 0; }