summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/wx/gain_calculator_dialog.cc2
-rw-r--r--wscript2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/gain_calculator_dialog.cc b/src/wx/gain_calculator_dialog.cc
index 9b6c7b004..5c073bd30 100644
--- a/src/wx/gain_calculator_dialog.cc
+++ b/src/wx/gain_calculator_dialog.cc
@@ -24,7 +24,7 @@
using namespace boost;
GainCalculatorDialog::GainCalculatorDialog (wxWindow* parent)
- : wxDialog (parent, wxID_ANY, _("Gain Calculator"))
+ : wxDialog (parent, wxID_ANY, wxString ("Gain Calculator"))
{
wxFlexGridSizer* table = new wxFlexGridSizer (2, 6, 6);
table->AddGrowableCol (1, 1);
diff --git a/wscript b/wscript
index df7b24632..0597f5f32 100644
--- a/wscript
+++ b/wscript
@@ -3,7 +3,7 @@ import os
import sys
APPNAME = 'dvdomatic'
-VERSION = '0.39'
+VERSION = '0.40pre'
def options(opt):
opt.load('compiler_cxx')