diff options
author | Lars Koeller <lkoeller@FreeBSD.org> | 2004-11-28 16:39:01 +0000 |
---|---|---|
committer | Lars Koeller <lkoeller@FreeBSD.org> | 2004-11-28 16:39:01 +0000 |
commit | beaccb88a3f414817c93fb847e77cfbd09711afb (patch) | |
tree | 958ea0850444745e7e4f2aac2e658de4fa118f7c /sysutils/bacula/files/patch-src-wx-console | |
parent | Update to 0.2.2 (diff) |
o) Update to version 1.36.1
Notes
Notes:
svn path=/head/; revision=122674
Diffstat (limited to 'sysutils/bacula/files/patch-src-wx-console')
-rw-r--r-- | sysutils/bacula/files/patch-src-wx-console | 31 |
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 ""; |