X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/af1337b041be734b7e64bcf7a06086268ae6895e..02f51f1f140e181d97eb38c83b9f272292e743d0:/samples/xrc/xrcdemo.h

diff --git a/samples/xrc/xrcdemo.h b/samples/xrc/xrcdemo.h
index c201be31b4..a66bd240cd 100644
--- a/samples/xrc/xrcdemo.h
+++ b/samples/xrc/xrcdemo.h
@@ -14,14 +14,6 @@
 #ifndef _XRCDEMO_H_
 #define _XRCDEMO_H_
 
-//-----------------------------------------------------------------------------
-// GCC interface
-//-----------------------------------------------------------------------------
-
-#ifdef __GNUG__
-    #pragma interface "xrcdemo.h"
-#endif
-
 //-----------------------------------------------------------------------------
 // Headers
 //-----------------------------------------------------------------------------
@@ -39,12 +31,12 @@ class MyApp : public wxApp
 public:
 
     // Override base class virtuals:
-    // wxApp::OnInit() is called on application startup and is a good place 
-    // for the app initialization (doing it here and not in the ctor 
-    // allows to have an error return: if OnInit() returns false, the 
+    // wxApp::OnInit() is called on application startup and is a good place
+    // for the app initialization (doing it here and not in the ctor
+    // allows to have an error return: if OnInit() returns false, the
     // application terminates)
     virtual bool OnInit();
-    
+
 };
 
 //-----------------------------------------------------------------------------