]> git.saurik.com Git - wxWidgets.git/commitdiff
Add missing stdio.h include to wxGTK assert dialog code.
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 8 Nov 2011 11:01:58 +0000 (11:01 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 8 Nov 2011 11:01:58 +0000 (11:01 +0000)
As we use FILE for saving the assert message to a file, we must include
<stdio.h> (which is not included from any other header, at least not under
Solaris).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69696 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/assertdlg_gtk.cpp

index 0deb8617ef0ef48e3b39e60f518ee974175bfdac..e80caffbdb9b58b7e7756a8ee01dd7e9d45f22a1 100644 (file)
@@ -12,6 +12,8 @@
 #include "wx/gtk/assertdlg_gtk.h"
 #include "wx/gtk/private/gtk2-compat.h"
 
+#include <stdio.h>
+
 /* ----------------------------------------------------------------------------
    Constants
  ---------------------------------------------------------------------------- */