summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/windows/npcdialog.cpp3
-rw-r--r--src/gui/windows/npcdialog.h10
2 files changed, 8 insertions, 5 deletions
diff --git a/src/gui/windows/npcdialog.cpp b/src/gui/windows/npcdialog.cpp
index fb38dcc72..ca6607c41 100644
--- a/src/gui/windows/npcdialog.cpp
+++ b/src/gui/windows/npcdialog.cpp
@@ -773,7 +773,8 @@ bool NpcDialog::isAnyInputFocused()
return false;
}
-void NpcDialog::integerRequest(const int defaultValue, const int min,
+void NpcDialog::integerRequest(const int defaultValue,
+ const int min,
const int max)
{
mActionState = NpcActionState::INPUT;
diff --git a/src/gui/windows/npcdialog.h b/src/gui/windows/npcdialog.h
index 4680d774d..71dd171b6 100644
--- a/src/gui/windows/npcdialog.h
+++ b/src/gui/windows/npcdialog.h
@@ -98,7 +98,8 @@ class NpcDialog final : public Window,
*
* @param string The text to add.
*/
- void addText(const std::string &string, const bool save = true);
+ void addText(const std::string &string,
+ const bool save);
/**
* When called, the widget will show a "Next" button.
@@ -156,7 +157,7 @@ class NpcDialog final : public Window,
/**
* Requests a text string from the user.
*/
- void textRequest(const std::string &defaultText = "");
+ void textRequest(const std::string &defaultText);
bool isInputFocused() const A_WARN_UNUSED;
@@ -167,8 +168,9 @@ class NpcDialog final : public Window,
/**
* Requests a interger from the user.
*/
- void integerRequest(const int defaultValue = 0, const int min = 0,
- const int max = 2147483647);
+ void integerRequest(const int defaultValue,
+ const int min,
+ const int max);
void itemRequest(const int size);