diff options
Diffstat (limited to 'tipper/tipper.cpp')
-rw-r--r-- | tipper/tipper.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tipper/tipper.cpp b/tipper/tipper.cpp index ca6690f..7599dc7 100644 --- a/tipper/tipper.cpp +++ b/tipper/tipper.cpp @@ -12,7 +12,7 @@ HMODULE hInst = 0;
HANDLE mainThread = 0;
-bool unicode_system; +bool unicode_system;
FontID font_id_title = {0}, font_id_labels = {0}, font_id_values = {0};
ColourID colour_id_bg = {0}, colour_id_border = {0}, colour_id_divider = {0}, colour_id_sidebar = {0};
@@ -138,7 +138,7 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam) { update.szComponentName = pluginInfo.shortName;
update.pbVersion = (BYTE *)CreateVersionString(pluginInfo.version, szVersion);
update.cpbVersion = strlen((char *)update.pbVersion);
- update.szBetaChangelogURL = "https://server.scottellis.com.au/websvn/log.php?repname=Miranda+Plugins&path=%2Ftipper%2F&rev=0&sc=0&isdir=1";
+ update.szBetaChangelogURL = "https://server.scottellis.com.au/wsvn/mim_plugs/tipper/?op=log&rev=0&sc=0&isdir=1";
update.szUpdateURL = UPDATER_AUTOREGISTER;
@@ -400,8 +400,8 @@ extern "C" int TIPPER_API Load(PLUGINLINK *link) { set_codepage();
- char szVer[128]; - unicode_system = (CallService(MS_SYSTEM_GETVERSIONTEXT, (WPARAM)sizeof(szVer), (LPARAM)szVer) == 0 && strstr(szVer, "Unicode")); + char szVer[128];
+ unicode_system = (CallService(MS_SYSTEM_GETVERSIONTEXT, (WPARAM)sizeof(szVer), (LPARAM)szVer) == 0 && strstr(szVer, "Unicode"));
// get the internal malloc/free()
memoryManagerInterface.cbSize = sizeof(memoryManagerInterface);
|