diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
commit | f96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch) | |
tree | edb17ec2c4ea13c5acb1c7350957a249a820e28d /zgscore | |
parent | b6588aa6851fb220cedc387d21c51513ef8d67f4 (diff) |
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'zgscore')
-rw-r--r-- | zgscore/zgscore-1.0.1/qtopia17.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/zgscore/zgscore-1.0.1/qtopia17.patch b/zgscore/zgscore-1.0.1/qtopia17.patch index e69de29bb2..7741ca51a5 100644 --- a/zgscore/zgscore-1.0.1/qtopia17.patch +++ b/zgscore/zgscore-1.0.1/qtopia17.patch @@ -0,0 +1,25 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +--- zgscore-src/zgscore_main.cpp~qtopia17 2004-04-07 16:22:03.000000000 +0200 ++++ zgscore-src/zgscore_main.cpp 2004-04-08 16:34:31.000000000 +0200 +@@ -1,5 +1,15 @@ + #include "zgscore.h" + #include <qpe/qpeapplication.h> + +-QTOPIA_ADD_APPLICATION("zgs", ZGS) +-QTOPIA_MAIN ++//QTOPIA_ADD_APPLICATION("zgs", ZGS) ++//QTOPIA_MAIN ++ ++int main(int argc, char** argv) ++{ ++ QPEApplication a( argc, argv ); ++ ZGS* zgs = new ZGS(); ++ a.showMainWidget( zgs ); ++ a.exec(); ++} ++ ++ |