Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2722)

Unified Diff: chrome/browser/ui/views/panels/panel_stack_view.cc

Issue 12094107: Convert to *WindowLongPtr functions for Win64 compatability (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/views/panels/panel_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/panels/panel_stack_view.cc
===================================================================
--- chrome/browser/ui/views/panels/panel_stack_view.cc (revision 180153)
+++ chrome/browser/ui/views/panels/panel_stack_view.cc (working copy)
@@ -192,9 +192,9 @@
// All the windows that share the same owner window will appear as a single
// window on the taskbar.
- ::SetWindowLong(panel_window,
- GWL_HWNDPARENT,
- reinterpret_cast<LONG>(stack_window));
+ ::SetWindowLongPtr(panel_window,
+ GWLP_HWNDPARENT,
+ reinterpret_cast<LONG>(stack_window));
#else
NOTIMPLEMENTED();
« no previous file with comments | « no previous file | chrome/browser/ui/views/panels/panel_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698