mirror of https://github.com/fltk/fltk
Fixed stupid typo in variable name
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11007 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
eb8207ff1b
commit
884928f68c
6
FL/Fl.H
6
FL/Fl.H
|
@ -142,7 +142,7 @@ public: // run time information about compile time configuration
|
|||
/** \defgroup cfg_gfx runtime graphics driver configuration */
|
||||
/** @{ */
|
||||
static bool cfg_gfx_xlib; ///< X11 Xlib rendering available, usually on Linux systems
|
||||
static bool cgf_gfx_quartz; ///< Quartz rendering available, usually on OS X systems
|
||||
static bool cfg_gfx_quartz; ///< Quartz rendering available, usually on OS X systems
|
||||
static bool cfg_gfx_gdi; ///< GDI redering available, usually on MSWindows systems
|
||||
static bool cfg_gfx_opengl; ///< OpenGL redering available, available on many platforms
|
||||
static bool cfg_gfx_cairo; ///< Cairo redering available, available on many platforms
|
||||
|
@ -151,13 +151,13 @@ public: // run time information about compile time configuration
|
|||
/** \defgroup cfg_prn runtime printer driver configuration */
|
||||
/** @{ */
|
||||
static bool cfg_prn_ps; ///< PostScript rendering available, usually on Linux systems
|
||||
static bool cgf_prn_quartz; ///< Quartz rendering available, usually on OS X systems
|
||||
static bool cfg_prn_quartz; ///< Quartz rendering available, usually on OS X systems
|
||||
static bool cfg_prn_gdi; ///< GDI redering available, usually on MSWindows systems
|
||||
/** @} */
|
||||
/** \defgroup cfg_win runtime window and event manager configuration */
|
||||
/** @{ */
|
||||
static bool cfg_win_x11; ///< X11 window management available, usually on Linux systems
|
||||
static bool cgf_win_cocoa; ///< Cocoa window management available, usually on OS X systems
|
||||
static bool cfg_win_cocoa; ///< Cocoa window management available, usually on OS X systems
|
||||
static bool cfg_win_win32; ///< WIN32 window management available, on low level MSWindows
|
||||
/** @} */
|
||||
/** \defgroup cfg_sys runtime system configuration */
|
||||
|
|
12
src/Fl.cxx
12
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;
|
||||
|
|
Loading…
Reference in New Issue