Noise: Prevent unittest crash caused by division by zero
[oweals/minetest.git] / src / guiPasswordChange.h
index cf81389eb36dedef1a05bcde3fffee6c1c344964..d9d21e7c4223244c9dfb315420bfcf94b4620a47 100644 (file)
@@ -39,12 +39,17 @@ public:
 
        void drawMenu();
 
-       bool acceptInput();
+       void acceptInput();
+
+       bool processInput();
 
        bool OnEvent(const SEvent &event);
 
 private:
        Client *m_client;
+       std::wstring m_oldpass = L"";
+       std::wstring m_newpass = L"";
+       std::wstring m_newpass_confirm = L"";
 };
 
 #endif