]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/wx-console/wxbconfigpanel.h
added win32 unicode support for wx-console (compile with _UNICODE)
[bacula/bacula] / bacula / src / wx-console / wxbconfigpanel.h
index 6ba123b8be63d75483fa8f234d86f6047a8cf84a..bcbe1d39a779cf76d78966e1eca338fbf8a24d67 100644 (file)
@@ -85,13 +85,13 @@ public:
        wxbConfigPanel(wxWindow* parent, wxbConfig* config, wxString title, wxWindowID ok, wxWindowID cancel, wxWindowID apply = -1);
        ~wxbConfigPanel();
 
-   void SetRowString(const char* title, wxString value);
-   wxString GetRowString(const char* title);
-   int GetRowSelection(const char* title);
-   void SetRowSelection(const char* title, int ind);
+   void SetRowString(const wxChar* title, wxString value);
+   wxString GetRowString(const wxChar* title);
+   int GetRowSelection(const wxChar* title);
+   void SetRowSelection(const wxChar* title, int ind);
 
-   void ClearRowChoices(const char* title);
-   void AddRowChoice(const char* title, wxString value);
+   void ClearRowChoices(const wxChar* title);
+   void AddRowChoice(const wxChar* title, wxString value);
 
    /* If enable is true, enables apply button, and disables ok button */
    void EnableApply(bool enable = true);
@@ -105,7 +105,7 @@ private:
    wxButton* cfgCancel;
    wxButton* cfgApply;
 
-   int FindRow(const char* title);
+   int FindRow(const wxChar* title);
 };
 
 #endif