wxVsnprintf() implementation with positional parameters support (patch 1462778); disabled for now

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39377 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-05-28 15:18:15 +00:00
parent fcca30c7e6
commit 7a828c7ffb
15 changed files with 1143 additions and 355 deletions

View File

@@ -274,6 +274,21 @@
// Enable conversion to standard C++ string if 1.
#define wxUSE_STD_STRING 0
// Support for positional parameters (e.g. %1$d, %2$s ...) in wxVsnprintf.
// Note that if the system's implementation does not support positional
// parameters, setting this to 1 forces the use of the wxWidgets implementation
// of wxVsnprintf. The standard vsnprintf() supports positional parameters on
// many Unix systems but usually doesn't under Windows.
//
// Positional parameters are very useful when translating a program since using
// them in formatting strings allow translators to correctly reorder the
// translated sentences.
//
// Default is 1
//
// Recommended setting: 1 if you want to support multiple languages
#define wxUSE_PRINTF_POS_PARAMS 0
// ----------------------------------------------------------------------------
// non GUI features selection
// ----------------------------------------------------------------------------