diff options
author | Lars Koeller <lkoeller@FreeBSD.org> | 2004-07-03 14:57:20 +0000 |
---|---|---|
committer | Lars Koeller <lkoeller@FreeBSD.org> | 2004-07-03 14:57:20 +0000 |
commit | 176782a545f60044d34714c0b1632aea9e2c11a4 (patch) | |
tree | cbabd898dd65c8e27e2992f91ee5f912df2fd227 /sysutils/bacula-server | |
parent | add authors to pkg-descr (diff) |
o) Fix wx-console compile problem.
Diffstat (limited to 'sysutils/bacula-server')
-rw-r--r-- | sysutils/bacula-server/Makefile | 2 | ||||
-rw-r--r-- | sysutils/bacula-server/files/patch-src-wx-console | 31 |
2 files changed, 32 insertions, 1 deletions
diff --git a/sysutils/bacula-server/Makefile b/sysutils/bacula-server/Makefile index 95a6fe086a0f..584c0f6054b9 100644 --- a/sysutils/bacula-server/Makefile +++ b/sysutils/bacula-server/Makefile @@ -7,7 +7,7 @@ PORTNAME= bacula PORTVERSION= 1.34.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= bacula diff --git a/sysutils/bacula-server/files/patch-src-wx-console b/sysutils/bacula-server/files/patch-src-wx-console new file mode 100644 index 000000000000..6f388bef45e5 --- /dev/null +++ b/sysutils/bacula-server/files/patch-src-wx-console @@ -0,0 +1,31 @@ +*** 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 ""; |