]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/samples/applet/applet.cpp
include needed for CFString conversion routines (param default)
[wxWidgets.git] / contrib / samples / applet / applet.cpp
index 86907e99f6bed204e67647549c9487086aedc4b1..16fb1fb66c463a62914303e0024abeca5d89404c 100644 (file)
@@ -2,22 +2,21 @@
 *
 *                       wxWindows HTML Applet Package
 *
+*               Copyright (C) 1991-2001 SciTech Software, Inc.
+*                            All rights reserved.
+*
 *  ========================================================================
 *
-*    The contents of this file are subject to the wxWindows licence; you
-*    may not use this file except in compliance with the License. You may
-*    obtain a copy of the License at http://www.wxwindows.org/licence.htm
+*    The contents of this file are subject to the wxWindows License
+*    Version 3.0 (the "License"); you may not use this file except in
+*    compliance with the License. You may obtain a copy of the License at
+*    http://www.wxwindows.org/licence3.txt
 *
 *    Software distributed under the License is distributed on an
 *    "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 *    implied. See the License for the specific language governing
 *    rights and limitations under the License.
 *
-*    The Original Code is Copyright (C) 2001 SciTech Software, Inc.
-*
-*    The Initial Developer of the Original Code is SciTech Software, Inc.
-*    All Rights Reserved.
-*
 *  ========================================================================
 *
 * Language:     ANSI C++
@@ -28,7 +27,7 @@
 ****************************************************************************/
 
 // For compilers that support precompilation, includes "wx/wx.h".
-#include <wx/wxprec.h>
+#include "wx/wxprec.h"
 #ifdef __BORLANDC__
     #pragma hdrstop
 #endif
@@ -77,17 +76,17 @@ MyFrame::MyFrame(
     menuFile->Append(Minimal_Quit, "E&xit");
     menuNav->Append(Minimal_Back, "Go &back");
     menuNav->Append(Minimal_Forward, "Go &forward");
-    
+
     // Now append the freshly created menu to the menu bar...
     wxMenuBar *menuBar = new wxMenuBar;
     menuBar->Append(menuFile, "&File");
     menuBar->Append(menuNav, "&Navigate");
-    
+
     // ... and attach this menu bar to the frame
     SetMenuBar(menuBar);
     CreateStatusBar(2);
 
-    // Create the HTML window   
+    // Create the HTML window
     html = new wxHtmlAppletWindow(this);
     html->SetRelatedFrame(this, "wxApplet Demo: '%s'");
     html->SetRelatedStatusBar(1);