summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2016-01-18 21:23:54 +0000
committerMatthias Melcher <fltk@matthiasm.com>2016-01-18 21:23:54 +0000
commit884928f68c6403947abb65b246a3bb3f2b23d6bf (patch)
treea810bfa6f6da020c4b9fcd575043ae15ef21602e /src
parenteb8207ff1bde8a1e092e60d4b2c15336c78e3a40 (diff)
Fixed stupid typo in variable name
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11007 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Fl.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx
index 3de2de770..1ac703b9c 100644
--- a/src/Fl.cxx
+++ b/src/Fl.cxx
@@ -86,9 +86,9 @@ bool Fl::cfg_gfx_xlib = 1;
bool Fl::cfg_gfx_xlib = 0;
#endif
#ifdef FL_CFG_GFX_QUARTZ
-bool Fl::cgf_gfx_quartz = 1;
+bool Fl::cfg_gfx_quartz = 1;
#else
-bool Fl::cgf_gfx_quartz = 0;
+bool Fl::cfg_gfx_quartz = 0;
#endif
#ifdef FL_CFG_GFX_GDI
bool Fl::cfg_gfx_gdi = 1;
@@ -117,9 +117,9 @@ bool Fl::cfg_prn_ps = 1;
bool Fl::cfg_prn_ps = 0;
#endif
#ifdef FL_CFG_PRN_QUARTZ
-bool Fl::cgf_prn_quartz = 1;
+bool Fl::cfg_prn_quartz = 1;
#else
-bool Fl::cgf_prn_quartz = 0;
+bool Fl::cfg_prn_quartz = 0;
#endif
#ifdef FL_CFG_PRN_GDI
bool Fl::cfg_prn_gdi = 1;
@@ -133,9 +133,9 @@ bool Fl::cfg_win_x11 = 1;
bool Fl::cfg_win_x11 = 0;
#endif
#ifdef FL_CFG_WIN_COCOA
-bool Fl::cgf_win_cocoa = 1;
+bool Fl::cfg_win_cocoa = 1;
#else
-bool Fl::cgf_win_cocoa = 0;
+bool Fl::cfg_win_cocoa = 0;
#endif
#ifdef FL_CFG_WIN_WIN32
bool Fl::cfg_win_win32 = 1;