summaryrefslogtreecommitdiff
path: root/gtk2_ardour/utils.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-07-28 20:32:52 +0200
committerRobin Gareus <robin@gareus.org>2013-07-28 20:32:52 +0200
commitcd28d62b26214770cfc269aafe666ec2fb3f2607 (patch)
tree40a8562aa2c5fb72c82c78084f31ac7799105524 /gtk2_ardour/utils.cc
parentd1c2d53afe71bfd4fb870b7ed179e8a77a801622 (diff)
fix compiler warnings.
Diffstat (limited to 'gtk2_ardour/utils.cc')
-rw-r--r--gtk2_ardour/utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/utils.cc b/gtk2_ardour/utils.cc
index 72a922046f..97368a7863 100644
--- a/gtk2_ardour/utils.cc
+++ b/gtk2_ardour/utils.cc
@@ -395,7 +395,7 @@ emulate_key_event (Gtk::Widget* w, unsigned int keyval)
ev.state = 0;
ev.keyval = keyval;
ev.length = 0;
- ev.string = (gchar*) "";
+ ev.string = "";
ev.hardware_keycode = keymapkey[0].keycode;
ev.group = keymapkey[0].group;
g_free(keymapkey);