]> git.tdb.fi Git - r2c2.git/blobdiff - source/designer/input.cpp
Make use of the unified storage class for other parts of Layout
[r2c2.git] / source / designer / input.cpp
index 8ad9ef37313ca9a25d58d6a37ee179f81ef3f3cf..ea4129a9cab1948a9383857ad277aefdcb5bd7fa 100644 (file)
@@ -36,14 +36,14 @@ InputDialog::InputDialog(Designer &d, const string &title, const string &text):
        entry->set_focus();
 }
 
-void InputDialog::key_press(unsigned key, unsigned mod, wchar_t ch)
+void InputDialog::key_press(unsigned key, unsigned mod)
 {
        if(key==Msp::Input::KEY_ENTER)
                response(1);
        else if(key==Msp::Input::KEY_ESC)
                response(0);
        else
-               Dialog::key_press(key, mod, ch);
+               Dialog::key_press(key, mod);
 }
 
 void InputDialog::on_response(int code)