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:
blizzard%redhat.com
2001-01-31 04:31:35 +00:00
parent d56852a8a7
commit 573f8a698a

View File

@@ -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;
}