diff options
-rw-r--r-- | metacontacts/MetaContacts.rc | 3 | ||||
-rw-r--r-- | metacontacts/meta_services.c | 1 | ||||
-rw-r--r-- | metacontacts/resource.h | 1 | ||||
-rw-r--r-- | metacontacts/version.h | 2 | ||||
-rw-r--r-- | metacontacts/version.rc | 1 |
5 files changed, 4 insertions, 4 deletions
diff --git a/metacontacts/MetaContacts.rc b/metacontacts/MetaContacts.rc index 652f0d8..dfc971a 100644 --- a/metacontacts/MetaContacts.rc +++ b/metacontacts/MetaContacts.rc @@ -7,7 +7,7 @@ //
// Generated from the TEXTINCLUDE 2 resource.
//
-#include "afxres.h"
+#include <windows.h>
/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS
@@ -291,3 +291,4 @@ IDI_MCSETDEFAULT ICON "meta_set_as_default.ico" /////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED
+
diff --git a/metacontacts/meta_services.c b/metacontacts/meta_services.c index db365de..e64a27d 100644 --- a/metacontacts/meta_services.c +++ b/metacontacts/meta_services.c @@ -445,7 +445,6 @@ int MetaFilter_RecvMessage(WPARAM wParam,LPARAM lParam) _snprintf(toolTip, sizeof(toolTip), Translate("Message from %s"), contactName);
cle.pszTooltip = toolTip;
CallService(MS_CLIST_ADDEVENT, 0, (LPARAM) & cle);
- CallService(MS_SKIN2_RELEASEICON, (WPARAM)cle.hIcon, 0);
}
if(options.metahistory) {
diff --git a/metacontacts/resource.h b/metacontacts/resource.h index a314445..575bc1b 100644 --- a/metacontacts/resource.h +++ b/metacontacts/resource.h @@ -53,6 +53,7 @@ #define IDC_CHK_COPYDATA 1038
#define IDC_CHK_LOCKHANDLE 1039
#define IDC_CHK_TEMPDEFAULT 1040
+#define IDC_STATIC -1
// Next default values for new objects
//
diff --git a/metacontacts/version.h b/metacontacts/version.h index 431f85e..5d9c245 100644 --- a/metacontacts/version.h +++ b/metacontacts/version.h @@ -5,7 +5,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 12
#define __RELEASE_NUM 2
-#define __BUILD_NUM 5
+#define __BUILD_NUM 6
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
diff --git a/metacontacts/version.rc b/metacontacts/version.rc index 842659d..0bb7a49 100644 --- a/metacontacts/version.rc +++ b/metacontacts/version.rc @@ -21,7 +21,6 @@ BEGIN BEGIN
VALUE "Author", __AUTHOR
VALUE "FileDescription", __DESC
- VALUE "FileVersion", __VERSION_STRING
VALUE "InternalName", __PLUGIN_NAME
VALUE "LegalCopyright", __COPYRIGHT
VALUE "OriginalFilename", __FILENAME
|