X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdesigner%2Finput.cpp;h=ea4129a9cab1948a9383857ad277aefdcb5bd7fa;hb=eb9c7f5200da4f3f31b41233be8cee397cb6abb9;hp=8ad9ef37313ca9a25d58d6a37ee179f81ef3f3cf;hpb=d15ac13f2e170f155b4bbd124df48400c339b644;p=r2c2.git diff --git a/source/designer/input.cpp b/source/designer/input.cpp index 8ad9ef3..ea4129a 100644 --- a/source/designer/input.cpp +++ b/source/designer/input.cpp @@ -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)