summaryrefslogtreecommitdiff
path: root/sysutils/bacula/files/patch-src-wx-console
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/bacula/files/patch-src-wx-console')
-rw-r--r--sysutils/bacula/files/patch-src-wx-console31
1 files changed, 0 insertions, 31 deletions
diff --git a/sysutils/bacula/files/patch-src-wx-console b/sysutils/bacula/files/patch-src-wx-console
deleted file mode 100644
index 6f388bef45e5..000000000000
--- a/sysutils/bacula/files/patch-src-wx-console
+++ /dev/null
@@ -1,31 +0,0 @@
-*** src/wx-console/wxbconfigpanel.cpp.orig Mon May 31 18:30:40 2004
---- src/wx-console/wxbconfigpanel.cpp Sat Jul 3 16:37:15 2004
-***************
-*** 88,100 ****
- wxString wxbConfigParam::GetValue() {
- switch (type) {
- case text:
-! return (statictext) ? statictext->GetLabel() : "";
- break;
- case modifiableText:
-! return (textctrl) ? textctrl->GetValue() : "";
- break;
- case choice:
-! return (choicectrl) ? choicectrl->GetStringSelection() : "";
- break;
- }
- return "";
---- 88,100 ----
- wxString wxbConfigParam::GetValue() {
- switch (type) {
- case text:
-! return (statictext != NULL) ? statictext->GetLabel() : wxString("");
- break;
- case modifiableText:
-! return (textctrl != NULL) ? textctrl->GetValue() : wxString("");
- break;
- case choice:
-! return (choicectrl != NULL) ? choicectrl->GetStringSelection() : wxString("");
- break;
- }
- return "";