]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/intl.h
Mention Scrolled and wxScrolledWindow
[wxWidgets.git] / interface / intl.h
index aef176653bec92c47151be8a0ff4142635f518d0..2594f281879f3a56a0d5c9063c305394d9aa665a 100644 (file)
@@ -29,9 +29,9 @@
       # ....
 
       # use the functions
-      print gettext( ``Panic!'' );
+      print gettext( "Panic!" );
 
-      button = Wx::Button-new( window, -1, gettext( ``Label'' ) );
+      button = Wx::Button-new( window, -1, gettext( "Label" ) );
     @endcode
 
     If you need to translate a lot of strings, then adding gettext( ) around
@@ -46,7 +46,7 @@
       # ...
 
       # use the functions
-      print t( ``Panic!!'' );
+      print t( "Panic!!" );
 
       # ...
     @endcode