diff options
-rw-r--r-- | metacontacts/MetaContacts_8.vcproj | 2 | ||||
-rw-r--r-- | metacontacts/meta_menu.c | 6 | ||||
-rw-r--r-- | metacontacts/version.h | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/metacontacts/MetaContacts_8.vcproj b/metacontacts/MetaContacts_8.vcproj index e6f5267..d0cb79d 100644 --- a/metacontacts/MetaContacts_8.vcproj +++ b/metacontacts/MetaContacts_8.vcproj @@ -61,6 +61,7 @@ WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="3"
+ ShowIncludes="false"
/>
<Tool
Name="VCManagedResourceCompilerTool"
@@ -156,6 +157,7 @@ WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="0"
+ ShowIncludes="false"
/>
<Tool
Name="VCManagedResourceCompilerTool"
diff --git a/metacontacts/meta_menu.c b/metacontacts/meta_menu.c index 7e21456..65c58a1 100644 --- a/metacontacts/meta_menu.c +++ b/metacontacts/meta_menu.c @@ -495,9 +495,9 @@ int Meta_ModifyMenu(WPARAM wParam, LPARAM lParam) // lParam = BOOL show
{
char serviceFunc[256];
- char *proto;
- mir_snprintf(serviceFunc, 256, "%s/SendNudge", proto = (char *)CallService(MS_PROTO_GETCONTACTBASEPROTO, (WPARAM)hContact, 0));
- CallService(MS_NUDGE_SHOWMENU, (WPARAM)proto, (LPARAM)ServiceExists(serviceFunc));
+ hContact = Meta_GetMostOnline((HANDLE)wParam);
+ mir_snprintf(serviceFunc, 256, "%s/SendNudge", (char *)CallService(MS_PROTO_GETCONTACTBASEPROTO, (WPARAM)hContact, 0));
+ CallService(MS_NUDGE_SHOWMENU, (WPARAM)META_PROTO, (LPARAM)ServiceExists(serviceFunc));
}
}
else
diff --git a/metacontacts/version.h b/metacontacts/version.h index fa90186..fba4e6b 100644 --- a/metacontacts/version.h +++ b/metacontacts/version.h @@ -5,7 +5,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 12
#define __RELEASE_NUM 3
-#define __BUILD_NUM 0
+#define __BUILD_NUM 1
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
|