diff options
Diffstat (limited to 'iax')
-rw-r--r-- | iax/common.h | 2 | ||||
-rw-r--r-- | iax/iax_8.vcproj | 4 | ||||
-rw-r--r-- | iax/icons.cpp | 4 | ||||
-rw-r--r-- | iax/private.h | 2 |
4 files changed, 4 insertions, 8 deletions
diff --git a/iax/common.h b/iax/common.h index a20064c..827531a 100644 --- a/iax/common.h +++ b/iax/common.h @@ -28,7 +28,7 @@ #include <m_popup.h>
-#include "IcoLib.h"
+#include <m_icolib.h>
#define MODULE "IAX"
diff --git a/iax/iax_8.vcproj b/iax/iax_8.vcproj index e7e39f0..275b7b4 100644 --- a/iax/iax_8.vcproj +++ b/iax/iax_8.vcproj @@ -242,10 +242,6 @@ >
</File>
<File
- RelativePath=".\IcoLib.h"
- >
- </File>
- <File
RelativePath=".\icons.h"
>
</File>
diff --git a/iax/icons.cpp b/iax/icons.cpp index dd7298e..118ab63 100644 --- a/iax/icons.cpp +++ b/iax/icons.cpp @@ -14,8 +14,8 @@ int ReloadIcons(WPARAM wParam, LPARAM lParam) { void InitIcons() {
if(ServiceExists(MS_SKIN2_ADDICON)) {
- SKINICONDESC2 sid = {0};
- sid.cbSize = sizeof(SKINICONDESC2);
+ SKINICONDESC sid = {0};
+ sid.cbSize = sizeof(SKINICONDESC);
sid.pszSection = MODULE;
diff --git a/iax/private.h b/iax/private.h index 0215752..a21fd71 100644 --- a/iax/private.h +++ b/iax/private.h @@ -5,7 +5,7 @@ #define VER_MAJOR 0
#define VER_MINOR 1
#define VER_RELEASE 0
-#define VER_BUILD 1
+#define VER_BUILD 2
#define __STRINGIZE(x) #x
#define VER_STRING __STRINGIZE( VER_MAJOR.VER_MINOR.VER_RELEASE.VER_BUILD )
|