summaryrefslogtreecommitdiff
path: root/gtk2_ardour/utils.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-12-08 19:33:48 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-12-08 19:33:48 +0000
commit7fdc582f19e00f24791689b0762c11a3c5ddf8ff (patch)
treeea7e58eb78690733f3c4d53d2a35fc8af0949dc5 /gtk2_ardour/utils.cc
parentd7716b055c3fc792d4f70df51bbc37f0e6220573 (diff)
locale debugging
git-svn-id: svn://localhost/ardour2/branches/3.0@13620 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/utils.cc')
-rw-r--r--gtk2_ardour/utils.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk2_ardour/utils.cc b/gtk2_ardour/utils.cc
index 952a393f27..891ea86c2c 100644
--- a/gtk2_ardour/utils.cc
+++ b/gtk2_ardour/utils.cc
@@ -598,6 +598,7 @@ key_is_legal_for_numeric_entry (guint keyval)
case GDK_comma:
if (comma_decimal < 0) {
std::lconv* lc = std::localeconv();
+ cerr << "***** Locale decimal point = [" << lc->decimal_point << "]\n";
if (strchr (lc->decimal_point, ',') != 0) {
comma_decimal = 1;
} else {