]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/list.cpp
Added in-place editiging in wxListCtrl
[wxWidgets.git] / src / common / list.cpp
index c36e7f79539942e6c42140c4e3687be9944c1d41..8622d286bc0f25cbbfc084cdc7f9cb2b12cc65b1 100644 (file)
@@ -24,6 +24,7 @@
 #include "wx/defs.h"
 #include "wx/list.h"
 #include "wx/utils.h"
+#include <wx/intl.h>
 #endif
 
 // Sun CC compatibility (interference with xview/pkg.h, apparently...)
@@ -252,7 +253,7 @@ wxNode *wxList::Find (const char *key) const
   {
       if (!current->key.string)
        {
-         wxFatalError ("wxList: string key not present, probably did not Append correctly!");
+         wxFatalError (_("wxList: string key not present, probably did not Append correctly!"));
          break;
        }
       if (strcmp (current->key.string, key) == 0)