Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
ec4b41d3
Commit
ec4b41d3
authored
Jan 30, 2009
by
dt
Browse files
Fixes: Hups, okay this should compile.
parent
c84e6fd4
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/coreplugin/dialogs/shortcutsettings.cpp
View file @
ec4b41d3
...
...
@@ -82,7 +82,7 @@ QWidget *ShortcutSettings::createPage(QWidget *parent)
{
m_keyNum
=
m_key
[
0
]
=
m_key
[
1
]
=
m_key
[
2
]
=
m_key
[
3
]
=
0
;
m_page
=
new
Ui_ShortcutSettings
(
parent
);
m_page
=
new
Ui_ShortcutSettings
();
QWidget
*
w
=
new
QWidget
(
parent
);
m_page
->
setupUi
(
w
);
...
...
@@ -116,6 +116,8 @@ QWidget *ShortcutSettings::createPage(QWidget *parent)
commandChanged
(
0
);
delete
m_page
;
return
w
;
}
...
...
src/plugins/coreplugin/generalsettings.cpp
View file @
ec4b41d3
...
...
@@ -64,7 +64,7 @@ QString GeneralSettings::trCategory() const
QWidget
*
GeneralSettings
::
createPage
(
QWidget
*
parent
)
{
m_page
=
new
Ui_GeneralSettings
(
parent
);
m_page
=
new
Ui_GeneralSettings
();
QWidget
*
w
=
new
QWidget
(
parent
);
m_page
->
setupUi
(
w
);
...
...
@@ -77,7 +77,7 @@ QWidget *GeneralSettings::createPage(QWidget *parent)
this
,
SLOT
(
resetExternalEditor
()));
connect
(
m_page
->
helpExternalEditorButton
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
showHelpForExternalEditor
()));
delete
m_page
;
return
w
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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