diff options
Diffstat (limited to 'src/gui/skill.cpp')
-rw-r--r-- | src/gui/skill.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/skill.cpp b/src/gui/skill.cpp index 66ebc506..684a9ded 100644 --- a/src/gui/skill.cpp +++ b/src/gui/skill.cpp @@ -143,8 +143,8 @@ SkillDialog::SkillDialog(): ScrollArea *skillScrollArea = new ScrollArea(mTable); mPointsLabel = new Label(strprintf(_("Skill points: %d"), 0)); - mIncButton = new Button(_("Up"), _("inc"), this); - mUseButton = new Button(_("Use"), _("use"), this); + mIncButton = new Button(_("Up"), "inc", this); + mUseButton = new Button(_("Use"), "use", this); mUseButton->setEnabled(false); skillScrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); |