diff options
author | George Hazan <ghazan@miranda.im> | 2022-01-30 18:39:25 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-01-30 18:39:25 +0300 |
commit | 1c008b3bda59815fbe9e690826accfb043b27c07 (patch) | |
tree | 2b0660358ddde07b8397c04a996e4099715602cf /plugins/WhenWasIt/src/date_utils.h | |
parent | bd5c44b8596067d5fffbd253ec9f5399dbd72339 (diff) |
fixes #3001 (WhenWasIt: remove mBirthday support)
Diffstat (limited to 'plugins/WhenWasIt/src/date_utils.h')
-rw-r--r-- | plugins/WhenWasIt/src/date_utils.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/plugins/WhenWasIt/src/date_utils.h b/plugins/WhenWasIt/src/date_utils.h index 3cfcf235d5..8baff33b63 100644 --- a/plugins/WhenWasIt/src/date_utils.h +++ b/plugins/WhenWasIt/src/date_utils.h @@ -25,16 +25,14 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define SAVE_MODE_STANDARD 0
#define SAVE_MODE_PROTOCOL 1
-#define SAVE_MODE_MBIRTHDAY 2
-#define DOB_UNKNOWN 100
-#define DOB_USERINFO 101
-#define DOB_MBIRTHDAY 102
-#define DOB_PROTOCOL 103
-#define DOB_BIRTHDAYREMINDER 104
-#define DOB_MICQBIRTHDAY 105
+#define DOB_UNKNOWN 100
+#define DOB_USERINFO 101
+#define DOB_PROTOCOL 103
+#define DOB_BIRTHDAYREMINDER 104
+#define DOB_MICQBIRTHDAY 105
-#define SAVE_MODE_DELETEALL 100
+#define SAVE_MODE_DELETEALL 100
time_t Today();
bool IsLeapYear(int year);
|