summaryrefslogtreecommitdiff
path: root/src/wx/content_version_dialog.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/content_version_dialog.cc')
-rw-r--r--src/wx/content_version_dialog.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wx/content_version_dialog.cc b/src/wx/content_version_dialog.cc
index 876f43838..bf94e1e53 100644
--- a/src/wx/content_version_dialog.cc
+++ b/src/wx/content_version_dialog.cc
@@ -24,6 +24,7 @@
using std::string;
+using std::vector;
using boost::optional;
@@ -47,8 +48,8 @@ ContentVersionDialog::set (string r)
}
-optional<string>
+vector<string>
ContentVersionDialog::get () const
{
- return wx_to_std(_version->GetValue());
+ return { wx_to_std(_version->GetValue()) };
}