Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Games
KMines
Commits
f6a88fc1
Commit
f6a88fc1
authored
Mar 14, 2000
by
Bernhard Rosenkraenzer
Browse files
Fix compilation
svn path=/trunk/kdegames/kmines/; revision=43493
parent
b6304653
Changes
1
Hide whitespace changes
Inline
Side-by-side
dialogs.cpp
View file @
f6a88fc1
...
...
@@ -354,9 +354,9 @@ OptionDialog::OptionDialog(uint &caseSize, QWidget *parent)
:
DialogBase
(
i18n
(
"Game settings"
),
Ok
|
Cancel
,
Cancel
,
parent
),
cs
(
caseSize
)
{
KIntNumInput
*
ni
=
new
KIntNumInput
(
i18n
(
"C
ase
s
ize
"
),
MIN_CASE_SIZE
,
MAX_CASE_SIZE
,
1
,
caseSize
,
QString
::
null
,
1
0
,
true
,
plainPage
(
));
KIntNumInput
*
ni
=
new
KIntNumInput
(
0
,
c
ase
S
ize
,
this
,
10
);
ni
->
setRange
(
MIN_CASE_SIZE
,
MAX_CASE_SIZE
,
1
,
true
);
ni
->
setLabel
(
i18n
(
"Case size"
));
top
->
addWidget
(
ni
);
connect
(
ni
,
SIGNAL
(
valueChanged
(
int
)),
SLOT
(
changed
(
int
)));
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment