git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1454
91ce42f0-d328-0410-95d8-
f526ca767f89
+03-07-2004 :
+ - wxbConfigPanel : Fixed ?: operator cast problem with gcc 2.95.
+
25-06-2004 :
- wxbRestorePanel : Fix file size truncated if >100mb.
wxString wxbConfigParam::GetValue() {
switch (type) {
case text:
- return (statictext != NULL) ? statictext->GetLabel() : "";
+ return (statictext != NULL) ? statictext->GetLabel() : wxString("");
break;
case modifiableText:
- return (textctrl != NULL) ? textctrl->GetValue() : "";
+ return (textctrl != NULL) ? textctrl->GetValue() : wxString("");
break;
case choice:
- return (choicectrl != NULL) ? choicectrl->GetStringSelection() : "";
+ return (choicectrl != NULL) ? choicectrl->GetStringSelection() : wxString("");
break;
}
return "";