From beaccb88a3f414817c93fb847e77cfbd09711afb Mon Sep 17 00:00:00 2001 From: Lars Koeller Date: Sun, 28 Nov 2004 16:39:01 +0000 Subject: o) Update to version 1.36.1 --- sysutils/bacula/files/patch-src-wx-console | 31 ------------------------------ 1 file changed, 31 deletions(-) delete mode 100644 sysutils/bacula/files/patch-src-wx-console (limited to 'sysutils/bacula/files/patch-src-wx-console') 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 ""; -- cgit v1.2.3