diff options
Diffstat (limited to 'yapp')
-rw-r--r-- | yapp/services.cpp | 3 | ||||
-rw-r--r-- | yapp/version.h | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/yapp/services.cpp b/yapp/services.cpp index 7db3f8b..1f822a9 100644 --- a/yapp/services.cpp +++ b/yapp/services.cpp @@ -136,6 +136,9 @@ int OldCreatePopupW(WPARAM wParam, LPARAM lParam) { pd_out->colorBack = pd_in->colorBack & 0xFFFFFF; pd_out->colorText = pd_in->colorText & 0xFFFFFF; } + pd_out->windowProc = pd_in->PluginWindowProc; + pd_out->opaque= pd_in->PluginData; + pd_out->timeout = pd_in->iSeconds; lstPopupHistory.Add(pd_out->pwzTitle, pd_out->pwzText, time(0)); if(!DBGetContactSettingByte(0, MODULE, "Enabled", 1)) { diff --git a/yapp/version.h b/yapp/version.h index e478f2d..53b5dbd 100644 --- a/yapp/version.h +++ b/yapp/version.h @@ -4,7 +4,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 5
#define __RELEASE_NUM 0
-#define __BUILD_NUM 2
+#define __BUILD_NUM 3
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
|