summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext/choice.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-12-23 01:26:33 +0000
committerCarl Hetherington <carl@carlh.net>2009-12-23 01:26:33 +0000
commitdefa1fad942e9a33b8fe3f56b26427af069a1b73 (patch)
treeee04bf6eac6afd01ac0c036cd81a0ac1ae7892cf /libs/gtkmm2ext/choice.cc
parentbe8a2e20dcacfc980c8de0341165b0be67ce35fd (diff)
Give titles to Gtkmm2ext::Choice prompts, and do some minor cleanups to prompt text.
git-svn-id: svn://localhost/ardour2/branches/3.0@6394 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/gtkmm2ext/choice.cc')
-rw-r--r--libs/gtkmm2ext/choice.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/gtkmm2ext/choice.cc b/libs/gtkmm2ext/choice.cc
index 7f5f869ada..363942eab7 100644
--- a/libs/gtkmm2ext/choice.cc
+++ b/libs/gtkmm2ext/choice.cc
@@ -26,7 +26,8 @@ using namespace Gtkmm2ext;
using namespace sigc;
using namespace Gtk;
-Choice::Choice (string prompt, vector<string> choices, bool center)
+Choice::Choice (string title, string prompt, vector<string> choices, bool center)
+ : Dialog (title)
{
int n;
vector<string>::iterator i;