Fix bug #66798. Only output our warning on DEBUG builds. r=pavlov, sr=blizzard r=doron
git-svn-id: svn://10.0.0.236/trunk@85815 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user