summary refs log tree commit diff stats
path: root/plugins/xtray/utility.cpp
diff options
context:
space:
mode:
authorberkeviktor@aol.com <berkeviktor@aol.com>2010-04-04 04:06:25 +0200
committerberkeviktor@aol.com <berkeviktor@aol.com>2010-04-04 04:06:25 +0200
commit3fab4f0d7dc92e70e5f0e6273d75df8c4d972a61 (patch)
tree2c19ff2f2f487567ea8a1718c9499930438636ca /plugins/xtray/utility.cpp
parent5607488e9f64c0190da57e82ea26b85086446197 (diff)
fix for x64 xtray
Diffstat (limited to 'plugins/xtray/utility.cpp')
-rw-r--r--plugins/xtray/utility.cpp16
1 files changed, 4 insertions, 12 deletions
diff --git a/plugins/xtray/utility.cpp b/plugins/xtray/utility.cpp
index 909517df..dd9dd29f 100644
--- a/plugins/xtray/utility.cpp
+++ b/plugins/xtray/utility.cpp
@@ -321,24 +321,16 @@ void CheckPrefs(HWND hwnd, int iDlg)
 				DWORD dwStyle;

 				dwStyle = GetWindowLong(g_hXchatWnd, GWL_STYLE);

 				dwStyle |= (1<<WS_CHILD);

-				SetWindowLong(g_hXchatWnd, GWL_STYLE, dwStyle);

-#ifdef _WIN64

-				SetWindowLong(g_hXchatWnd, GWLP_HWNDPARENT, (long)g_hHotkeyWnd);

-#else

-				SetWindowLong(g_hXchatWnd, GWL_HWNDPARENT, (long)g_hHotkeyWnd);

-#endif

+				SetWindowLongPtr(g_hXchatWnd, GWL_STYLE, (LONG_PTR)dwStyle);

+				SetWindowLongPtr(g_hXchatWnd, GWL_HWNDPARENT, (LONG_PTR)g_hHotkeyWnd);

 			}

 			else

 			{

 				DWORD dwStyle;

 				dwStyle = GetWindowLong(g_hXchatWnd, GWL_STYLE);

 				dwStyle &= ~(1<<WS_CHILD);

-				SetWindowLong(g_hXchatWnd, GWL_STYLE, dwStyle);

-#ifdef _WIN64

-				SetWindowLong(g_hXchatWnd, GWLP_HWNDPARENT, NULL);

-#else

-				SetWindowLong(g_hXchatWnd, GWL_HWNDPARENT, NULL);

-#endif

+				SetWindowLongPtr(g_hXchatWnd, GWL_STYLE, (LONG_PTR)dwStyle);

+				SetWindowLongPtr(g_hXchatWnd, GWL_HWNDPARENT, NULL);

 			}

 		}

 		break;