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
Utilities
Konsole
Commits
c273dd88
Commit
c273dd88
authored
Jul 28, 2020
by
Gustavo Carneiro
Browse files
Remove compile warning -Wparentheses
parent
74764db4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Application.cpp
View file @
c273dd88
...
...
@@ -260,7 +260,7 @@ int Application::newInstance()
if
(
createdNewMainWindow
)
{
finalizeNewMainWindow
(
window
);
}
else
{
window
->
setWindowState
(
window
->
windowState
()
&
~
Qt
::
WindowMinimized
|
Qt
::
WindowActive
);
window
->
setWindowState
(
window
->
windowState
()
&
(
~
Qt
::
WindowMinimized
|
Qt
::
WindowActive
)
)
;
window
->
show
();
window
->
activateWindow
();
}
...
...
Write
Preview
Supports
Markdown
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