summaryrefslogtreecommitdiff
path: root/development
authorzecke <zecke>2004-11-14 22:18:09 (UTC)
committer zecke <zecke>2004-11-14 22:18:09 (UTC)
commit1d709cf8ce04b49db03d0e0353f3b7a071dce619 (patch) (unidiff)
tree51cead0634a6f1a231b63687db37ed797bd06d33 /development
parent639ae2f86e57b77e875bdf933534b652b207f1b6 (diff)
downloadopie-1d709cf8ce04b49db03d0e0353f3b7a071dce619.zip
opie-1d709cf8ce04b49db03d0e0353f3b7a071dce619.tar.gz
opie-1d709cf8ce04b49db03d0e0353f3b7a071dce619.tar.bz2
Make the utlity quicklaunchable even if it is not under the control
of the buildsystem
Diffstat (limited to 'development') (more/less context) (ignore whitespace changes)
-rw-r--r--development/performance/main.cpp12
-rw-r--r--development/performance/opie-performance.control4
-rw-r--r--development/performance/performance.pro4
-rw-r--r--development/performance/performancetest.h1
4 files changed, 6 insertions, 15 deletions
diff --git a/development/performance/main.cpp b/development/performance/main.cpp
index 8802777..41db9e9 100644
--- a/development/performance/main.cpp
+++ b/development/performance/main.cpp
@@ -20,14 +20,6 @@
20 20
21#include "performancetest.h" 21#include "performancetest.h"
22 22
23#include <qpe/qpeapplication.h> 23#include <opie2/oapplicationfactory.h>
24 24
25int main( int argc, char ** argv ) 25OPIE_EXPORT_APP( Opie::Core::OApplicationFactory<PerformanceTest> )
26{
27 QPEApplication a( argc, argv );
28
29 PerformanceTest mw;
30 a.showMainWidget( &mw );
31
32 return a.exec();
33}
diff --git a/development/performance/opie-performance.control b/development/performance/opie-performance.control
index 299fda2..89157f9 100644
--- a/development/performance/opie-performance.control
+++ b/development/performance/opie-performance.control
@@ -1,10 +1,10 @@
1Files: bin/performance apps/Applications/performance.desktop 1Files: plugins/applications/libperformance.so* bin/performance apps/Applications/performance.desktop
2Priority: optional 2Priority: optional
3Section: opie/other 3Section: opie/other
4Maintainer: Trolltech (www.trolltech.com) 4Maintainer: Trolltech (www.trolltech.com)
5Architecture: $CPU_ARCH 5Architecture: $CPU_ARCH
6Arch: $DEVICE_ARCH 6Arch: $DEVICE_ARCH
7Version: $QPE_VERSION-10 7Version: $QPE_VERSION-10
8Depends: qpe-libqtopia 8Depends: opie-taskbar
9Description: Graphics performance tester 9Description: Graphics performance tester
10 Graphics performance tester for Qtopia. 10 Graphics performance tester for Qtopia.
diff --git a/development/performance/performance.pro b/development/performance/performance.pro
index ab3a51a..a7fc512 100644
--- a/development/performance/performance.pro
+++ b/development/performance/performance.pro
@@ -1,6 +1,4 @@
1TEMPLATE = app 1CONFIG += qt quick-app
2CONFIG += qt warn_on release
3#DESTDIR = $(QPEDIR)/bin
4HEADERS = performancetest.h 2HEADERS = performancetest.h
5SOURCES = main.cpp performancetest.cpp 3SOURCES = main.cpp performancetest.cpp
6INTERFACES = performancetestbase.ui 4INTERFACES = performancetestbase.ui
diff --git a/development/performance/performancetest.h b/development/performance/performancetest.h
index c0a80c4..a747c3c 100644
--- a/development/performance/performancetest.h
+++ b/development/performance/performancetest.h
@@ -6,6 +6,7 @@ class PerformanceTest : public PerformanceTestBase
6 Q_OBJECT 6 Q_OBJECT
7public: 7public:
8 PerformanceTest( QWidget *parent=0, const char *name=0, WFlags fl=0 ); 8 PerformanceTest( QWidget *parent=0, const char *name=0, WFlags fl=0 );
9 static QString appName() { return QString::fromLatin1("performance"); }
9 10
10protected slots: 11protected slots:
11 void testClicked( int ); 12 void testClicked( int );