diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-16 14:51:46 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-16 14:51:46 +0000 |
commit | 8617d7e00546f892c9084f7c382648b23d8bbb63 (patch) | |
tree | 2be51254236644b678418c1147f223a30e030bda /plugins/WhenWasIt/services.h | |
parent | 05c989e58aeffcfb59cebaca6797cb69dd25cb1e (diff) |
another portion of "#ifdef Unicode" removal
git-svn-id: http://svn.miranda-ng.org/main/trunk@447 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/WhenWasIt/services.h')
-rw-r--r-- | plugins/WhenWasIt/services.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/plugins/WhenWasIt/services.h b/plugins/WhenWasIt/services.h index 47619acc26..4348077a54 100644 --- a/plugins/WhenWasIt/services.h +++ b/plugins/WhenWasIt/services.h @@ -30,15 +30,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define REFRESH_DETAILS_DELAY 3000
-#ifdef _UNICODE
+
#define BIRTHDAY_EXTENSION ".bdaysW"
#define BIRTHDAYS_EXPORT_FORMAT "%s@%S : %02d/%02d/%04d\n"
#define NOTFOUND_FORMAT "Could not find UID '%s [%S]' in current database, skipping"
-#else
-#define BIRTHDAY_EXTENSION ".bdays"
-#define BIRTHDAYS_EXPORT_FORMAT "%s@%s : %02d/%02d/%04d\n"
-#define NOTFOUND_FORMAT "Could not find UID '%s [%s]' in current database, skipping"
-#endif
+
extern int bShouldCheckBirthdays;
extern int bBirthdayFound;
|