diff options
author | George Hazan <george.hazan@gmail.com> | 2024-08-21 18:15:00 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-08-21 18:15:00 +0300 |
commit | 06440d88ab981b0cff43bbd4bf82a6d788d57f09 (patch) | |
tree | 665ea9543996b0d34ead6a1da9e276b8cc2dde6d | |
parent | 0e423aaec68bcf17bf868d046e03f3a7dbed4aa1 (diff) |
fixes #4591 (WhenWasIt: remove micqBirthday support)
-rw-r--r-- | plugins/WhenWasIt/src/add_birthday.cpp | 1 | ||||
-rw-r--r-- | plugins/WhenWasIt/src/utils.h | 6 |
2 files changed, 0 insertions, 7 deletions
diff --git a/plugins/WhenWasIt/src/add_birthday.cpp b/plugins/WhenWasIt/src/add_birthday.cpp index 455132e47d..108d2e9a52 100644 --- a/plugins/WhenWasIt/src/add_birthday.cpp +++ b/plugins/WhenWasIt/src/add_birthday.cpp @@ -23,7 +23,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define COLOR_USERINFO RGB(138, 190, 160) #define COLOR_MBIRTHDAY RGB(222, 222, 88) #define COLOR_BIRTHDAYREMINDER RGB(200, 120, 240) -#define COLOR_MICQBIRTHDAY RGB(88, 88, 240) #define COLOR_PROTOCOL RGB(255, 153, 153) void UpdateBirthday(MCONTACT); diff --git a/plugins/WhenWasIt/src/utils.h b/plugins/WhenWasIt/src/utils.h index 919f0c7bf8..2a9ab06e85 100644 --- a/plugins/WhenWasIt/src/utils.h +++ b/plugins/WhenWasIt/src/utils.h @@ -25,12 +25,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define LOG_FILE "wwi.log"
-#define ANCHOR_LEFT 0x000001
-#define ANCHOR_RIGHT 0x000002
-#define ANCHOR_TOP 0x000004
-#define ANCHOR_BOTTOM 0x000008
-#define ANCHOR_ALL ANCHOR_LEFT | ANCHOR_RIGHT | ANCHOR_TOP | ANCHOR_BOTTOM
-
int LogInit();
int Log(char *format, ...);
int Info(char *title, char *format, ...);
|