diff --git a/docs/html/faqgen.htm b/docs/html/faqgen.htm index 2b6b864cf3..25fc5d82b4 100644 --- a/docs/html/faqgen.htm +++ b/docs/html/faqgen.htm @@ -140,10 +140,10 @@ platform-independent code, such as the wxTreeCtrl and wxListCtrl classes.
No. This is a much-discussed topic that has (many times) ended with the conclusion that it is in wxWidgets' best interests to avoid use of templates. Not all compilers can handle templates adequately so it would dramatically reduce the number of compilers -and platforms that could be supported. It would also be undersirable to make +and platforms that could be supported. It would also be undesirable to make wxWidgets dependent on another large library that may have to be downloaded and installed. In addition, use of templates can lead to executable bloat, which is something -wxWidgets 2 is strenously trying to avoid.
+wxWidgets 2 is strenuously trying to avoid.
The standard C++ string class is not used, again because it is not available to all compilers, and it is not necessarily a very efficient implementation. Also, we retain more flexibility diff --git a/docs/html/faqgtk.htm b/docs/html/faqgtk.htm index cc4b3748e6..6da8b25c07 100644 --- a/docs/html/faqgtk.htm +++ b/docs/html/faqgtk.htm @@ -49,7 +49,7 @@ often abbreviated to wxGTK. wxGTK has a separate home page Why doesn't reading floating point numbers work when using wxWidgets? If your program reads the floating point numbers in the format 123.45 -from a file, it may suddently start returning just 123 instead of the +from a file, it may suddenly start returning just 123 instead of the correct value on some systems -- which is all the more mysterious as the same code in a standalone program works just fine. diff --git a/docs/html/faqmac.htm b/docs/html/faqmac.htm index 3e7f255569..6c053adb95 100644 --- a/docs/html/faqmac.htm +++ b/docs/html/faqmac.htm @@ -200,7 +200,7 @@ This error can sometimes be corrected or avoided by modifying the source code. H Because wxWidgets does not have a specific API for the About menu item or the Help menu, the Mac OS port uses some static variables to help the engine make the right decisions:
wxApp::s_macHelpMenuTitleName
, it defaults to "&Help", but you can change it in your constructor to your specific menu title.
+wxApp::s_macHelpMenuTitleName
, it defaults to "&Help", but you can change it in your constructor to your specific menu title.
wxApp::s_macAboutMenuItemID
, it defaults to wxID_ABOUT
, but can be changed as well to suit your needs.
-
-
+ As of wxWidgets 2.1, there is a new system written by Vadim Zeitlin, that generates the makefiles from templates using tmake.
@@ -453,7 +458,7 @@ First, you can use wxRegKey directly, for example: regKey.SetName(idName); { - wxLogNull dummy; + wxLogNull dummy; if (!regKey.Create()) { idName = wxT("HKEY_CURRENT_USER\\SOFTWARE\\My Company\\My Product\\Stuff\\"); @@ -499,7 +504,7 @@ for the current status.
-