]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/dialog.h
Fixed typo.
[wxWidgets.git] / include / wx / osx / dialog.h
index 9442b943739918c235c2bc5f674bb61e21c4f213..8b7a24f2bd4d986ede83cc51aed07f6459e17795 100644 (file)
@@ -14,8 +14,6 @@
 
 #include "wx/panel.h"
 
-WXDLLIMPEXP_DATA_CORE(extern const char) wxDialogNameStr[];
-
 class WXDLLIMPEXP_FWD_CORE wxMacToolTip ;
 class WXDLLIMPEXP_FWD_CORE wxModalEventLoop ;
 
@@ -56,12 +54,12 @@ public:
 
     // show the dialog modally and return the value passed to EndModal()
     virtual int ShowModal();
-    
+
     virtual void ShowWindowModal();
 
     // may be called to terminate the dialog with the given return code
     virtual void EndModal(int retCode);
-    
+
     static bool OSXHasModalDialogsOpen();
     static void OSXBeginModalDialog();
     static void OSXEndModalDialog();
@@ -70,13 +68,13 @@ public:
     // --------------
 
     wxDialogModality GetModality() const;
-    
+
 #if wxOSX_USE_COCOA
     virtual void ModalFinishedCallback(void* WXUNUSED(panel), int WXUNUSED(returnCode)) {}
 #endif
 
 protected:
-    // show window modal dialog 
+    // show window modal dialog
     void DoShowWindowModal();
 
     // end window modal dialog.
@@ -87,7 +85,7 @@ protected:
 
 
     wxDialogModality m_modality;
-    
+
     wxModalEventLoop* m_eventLoop;
 
 private: