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
Tobias Hunger
qt-creator
Commits
3cff7afb
Commit
3cff7afb
authored
Nov 29, 2010
by
hjk
Browse files
debugger: cosmetics
parent
ef074dad
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggerplugin.cpp
View file @
3cff7afb
...
...
@@ -645,11 +645,10 @@ bool CommonOptionsPage::matches(const QString &s) const
//
///////////////////////////////////////////////////////////////////////
static
inline
bool
oxygenStyle
()
static
bool
oxygenStyle
()
{
if
(
const
ManhattanStyle
*
ms
=
qobject_cast
<
const
ManhattanStyle
*>
(
qApp
->
style
()))
return
!
qstrcmp
(
"OxygenStyle"
,
ms
->
baseStyle
()
->
metaObject
()
->
className
());
return
false
;
const
ManhattanStyle
*
ms
=
qobject_cast
<
const
ManhattanStyle
*>
(
qApp
->
style
());
return
ms
&&
!
qstrcmp
(
"OxygenStyle"
,
ms
->
baseStyle
()
->
metaObject
()
->
className
());
}
class
DebuggingHelperOptionPage
:
public
Core
::
IOptionsPage
...
...
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