diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-16 19:33:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-16 19:41:37 +0300 |
commit | 741d50e884d8a8b783b3980db775ebc07045a65a (patch) | |
tree | 161773b4eab09487f62f35ad82113ac996f15320 /src/gui/windows/registerdialog.h | |
parent | 5a007084e304048549233118707f5ab44f067e1a (diff) | |
download | plus-741d50e884d8a8b783b3980db775ebc07045a65a.tar.gz plus-741d50e884d8a8b783b3980db775ebc07045a65a.tar.bz2 plus-741d50e884d8a8b783b3980db775ebc07045a65a.tar.xz plus-741d50e884d8a8b783b3980db775ebc07045a65a.zip |
Move wrongdatanoticelistener into separate file.
Diffstat (limited to 'src/gui/windows/registerdialog.h')
-rw-r--r-- | src/gui/windows/registerdialog.h | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/src/gui/windows/registerdialog.h b/src/gui/windows/registerdialog.h index 90087b5e2..fc063ac14 100644 --- a/src/gui/windows/registerdialog.h +++ b/src/gui/windows/registerdialog.h @@ -32,25 +32,7 @@ class Button; class LoginData; class RadioButton; class TextField; - -/** - * Listener used while dealing with wrong data. It is used to direct the focus - * to the field which contained wrong data when the Ok button was pressed on - * the error notice. - */ -class WrongDataNoticeListener final : public ActionListener -{ - public: - WrongDataNoticeListener(); - - A_DELETE_COPY(WrongDataNoticeListener) - - void setTarget(TextField *const textField); - - void action(const ActionEvent &event) override final; - private: - TextField *mTarget; -}; +class WrongDataNoticeListener; /** * The registration dialog. |