fix the build (moved code use 'this' instead of 'window')

This commit is contained in:
Wladimir J. van der Laan 2011-09-07 18:16:38 +02:00
parent 94723e27ad
commit f077d1ad62
1 changed files with 2 additions and 2 deletions

View File

@ -164,8 +164,8 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):
// Windows-specific customization // Windows-specific customization
if (QtWin::isCompositionEnabled()) if (QtWin::isCompositionEnabled())
{ {
QtWin::extendFrameIntoClientArea(&window); QtWin::extendFrameIntoClientArea(this);
window.setContentsMargins(0, 0, 0, 0); setContentsMargins(0, 0, 0, 0);
} }
#endif #endif
setWindowComposition(); setWindowComposition();