From: Vadim Zeitlin <vadim@wxwidgets.org>
Date: Fri, 18 Sep 2009 16:16:30 +0000 (+0000)
Subject: Fix recurring typo in "theming".
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b3b17ee74390803c2743455f5f3c744a2dd392ea

Fix recurring typo in "theming".

It was (consistently) misspelt as "themeing" in several places.

Closes #11206.

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

diff --git a/include/wx/osx/cocoa/private.h b/include/wx/osx/cocoa/private.h
index c8adede969..ab8ba6b158 100644
--- a/include/wx/osx/cocoa/private.h
+++ b/include/wx/osx/cocoa/private.h
@@ -33,7 +33,7 @@
 // shared between Cocoa and Carbon
 //
 
-// bring in themeing types without pulling in the headers
+// bring in theming types without pulling in the headers
 
 #if wxUSE_GUI
 typedef SInt16 ThemeBrush;
diff --git a/src/aui/auibar.cpp b/src/aui/auibar.cpp
index 1c77b59386..b7af874e97 100644
--- a/src/aui/auibar.cpp
+++ b/src/aui/auibar.cpp
@@ -38,7 +38,7 @@
 
 #ifdef __WXMAC__
 #include "wx/osx/private.h"
-// for themeing support
+// for theming support
 #include <Carbon/Carbon.h>
 #endif
 
diff --git a/src/aui/auibook.cpp b/src/aui/auibook.cpp
index 0d8462de1d..fe15ff4051 100644
--- a/src/aui/auibook.cpp
+++ b/src/aui/auibook.cpp
@@ -35,7 +35,7 @@
 
 #ifdef __WXMAC__
 #include "wx/osx/private.h"
-// for themeing support
+// for theming support
 #include <Carbon/Carbon.h>
 #endif
 
diff --git a/src/aui/dockart.cpp b/src/aui/dockart.cpp
index 52f2d41833..7712c3b143 100644
--- a/src/aui/dockart.cpp
+++ b/src/aui/dockart.cpp
@@ -38,7 +38,7 @@
 #include "wx/osx/private.h"
 #include "wx/graphics.h"
 #include "wx/dcgraph.h"
-// for themeing support
+// for theming support
 #include <Carbon/Carbon.h>
 #endif
 
diff --git a/src/generic/listctrl.cpp b/src/generic/listctrl.cpp
index b3c3b77564..20136f0086 100644
--- a/src/generic/listctrl.cpp
+++ b/src/generic/listctrl.cpp
@@ -52,7 +52,7 @@
 
 #ifdef __WXMAC__
     #include "wx/osx/private.h"
-    // for themeing support
+    // for theming support
     #include <Carbon/Carbon.h>
 #endif
 
diff --git a/src/osx/carbon/font.cpp b/src/osx/carbon/font.cpp
index 29ff06fe94..aaf764a566 100644
--- a/src/osx/carbon/font.cpp
+++ b/src/osx/carbon/font.cpp
@@ -29,7 +29,7 @@
 #include "wx/osx/private.h"
 
 #if wxOSX_USE_ATSU_TEXT && !wxOSX_USE_CARBON
-// include themeing support
+// include theming support
 #include <Carbon/Carbon.h>
 #endif
 
@@ -163,7 +163,7 @@ protected:
 public:
     bool            m_fontValid;
 #if wxOSX_USE_CARBON && wxOSX_USE_ATSU_TEXT
-    // for true themeing support we must store the correct font
+    // for true theming support we must store the correct font
     // information here, as this speeds up and optimizes rendering
     ThemeFontID     m_macThemeFontID ;
 #endif
@@ -346,7 +346,7 @@ wxFontRefData::wxFontRefData(wxOSXSystemFont font, int size)
                 m_macThemeFontID = kThemeMiniSystemFont;
                 break;
            case wxOSX_SYSTEM_FONT_MINI_BOLD:
-                // bold not available under themeing
+                // bold not available under theming
                 m_macThemeFontID = kThemeMiniSystemFont;
                 break;
             case wxOSX_SYSTEM_FONT_LABELS:
diff --git a/src/osx/carbon/window.cpp b/src/osx/carbon/window.cpp
index 09f448a83c..1e54d5a279 100644
--- a/src/osx/carbon/window.cpp
+++ b/src/osx/carbon/window.cpp
@@ -65,7 +65,7 @@
 #include "wx/osx/uma.h"
 #else
 #include "wx/osx/private.h"
-// bring in themeing
+// bring in theming
 #include <Carbon/Carbon.h>
 #endif
 
diff --git a/src/osx/utils_osx.cpp b/src/osx/utils_osx.cpp
index 237243684e..1081852ae7 100644
--- a/src/osx/utils_osx.cpp
+++ b/src/osx/utils_osx.cpp
@@ -42,7 +42,7 @@
 #include "wx/osx/private.h"
 
 #if wxOSX_USE_COCOA
-// to get the themeing APIs
+// to get the theming APIs
 #include <Carbon/Carbon.h>
 #endif
 
diff --git a/src/osx/window_osx.cpp b/src/osx/window_osx.cpp
index 4a4c1278a9..4c873caa31 100644
--- a/src/osx/window_osx.cpp
+++ b/src/osx/window_osx.cpp
@@ -68,7 +68,7 @@
 #else
 #include "wx/osx/private.h"
 #if wxOSX_USE_COCOA
-// bring in themeing
+// bring in theming
 #include <Carbon/Carbon.h>
 #endif
 #endif