author | ulf69 <ulf69> | 2004-10-19 22:04:04 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-10-19 22:04:04 (UTC) |
commit | b11fbdc29bf96507c68ee9b6813d76ae37b5fd8f (patch) (side-by-side diff) | |
tree | d9fd57f0d1a29b2e154dd60e804bd44884860077 | |
parent | b810b8872e725b2d017c63cbf44b0dacb535677b (diff) | |
download | kdepimpi-b11fbdc29bf96507c68ee9b6813d76ae37b5fd8f.zip kdepimpi-b11fbdc29bf96507c68ee9b6813d76ae37b5fd8f.tar.gz kdepimpi-b11fbdc29bf96507c68ee9b6813d76ae37b5fd8f.tar.bz2 |
changed package and filename as requested by Michael
-rw-r--r-- | pwmanager/pwmanager/globalstuff.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pwmanager/pwmanager/globalstuff.h b/pwmanager/pwmanager/globalstuff.h index 428ce95..4f70f68 100644 --- a/pwmanager/pwmanager/globalstuff.h +++ b/pwmanager/pwmanager/globalstuff.h @@ -16,70 +16,70 @@ * * $Id$ **************************************************************************/ #ifndef __GLOBALSTUFF_H #define __GLOBALSTUFF_H #ifndef PWM_EMBEDDED #include "config.h" #endif #include "compiler.h" //US BUG: the following code caused compile errors with certain gcccompilers (2.95). // Because of that I replaced it with a Qt version, which should do the same. #include <string> #ifndef PWM_EMBEDDED #include <sstream> #else #include <qstring.h> #include <qtextstream.h> #endif #ifndef CONFIG_KEYCARD class QWidget; void no_keycard_support_msg_box(QWidget *parentWidget); #endif // CONFIG_KEYCARD #ifdef PROG_NAME # undef PROG_NAME #endif -#define PROG_NAME "PwManager" +#define PROG_NAME "PwManager-MicroKDE" #ifdef PACKAGE_NAME # undef PACKAGE_NAME #endif -#define PACKAGE_NAME "pwmanager" +#define PACKAGE_NAME "pwmanager-microkde" #ifdef PACKAGE_VER # undef PACKAGE_VER #endif #define PACKAGE_VER "1.0.1" #ifdef CONFIG_DEBUG # define PWM_DEBUG #else # undef PWM_DEBUG #endif #ifdef QT_MAKE_VERSION # undef QT_MAKE_VERSION #endif #define QT_MAKE_VERSION(a,b,c) (((a) << 16) | ((b) << 8) | (c)) /** remove "unused parameter" warnings */ #ifdef PARAM_UNUSED # undef PARAM_UNUSED #endif #define PARAM_UNUSED(x) (void)x /** return the number of elements in an array */ #ifdef array_size # undef array_size #endif #define array_size(x) (sizeof(x) / sizeof((x)[0])) //US BUG: the following code caused compile errors with certain gcccompilers (2.95). // Because of that I replaced it with a Qt version, which should do the same. #ifndef PWM_EMBEDDED |