зеркало из https://github.com/mozilla/gecko-dev.git
Fix bug #66798. Only output our warning on DEBUG builds. r=pavlov, sr=blizzard r=doron
This commit is contained in:
Родитель
f3e44424d8
Коммит
00a184a9bc
|
@ -1591,8 +1591,11 @@ gint nsWindow::ConvertBorderStyles(nsBorderStyle bs)
|
|||
w |= GDK_DECOR_MINIMIZE;
|
||||
if (bs & eBorderStyle_maximize)
|
||||
w |= GDK_DECOR_MAXIMIZE;
|
||||
if (bs & eBorderStyle_close)
|
||||
if (bs & eBorderStyle_close) {
|
||||
#ifdef DEBUG
|
||||
printf("we don't handle eBorderStyle_close yet... please fix me\n");
|
||||
#endif /* DEBUG */
|
||||
}
|
||||
|
||||
return w;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче