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
Marco Bubke
flatpak-qt-creator
Commits
c82263ac
Commit
c82263ac
authored
Dec 12, 2008
by
hjk
Browse files
add a missing "return"
parent
02965b95
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/coreplugin/fancytabwidget.cpp
View file @
c82263ac
...
...
@@ -98,8 +98,6 @@ void FancyTabBar::paintEvent(QPaintEvent *event)
// paint active tab last, since it overlaps the neighbors
paintTab
(
&
p
,
currentIndex
());
}
// Handle hover events for mouse fade ins
...
...
src/plugins/subversion/subversionplugin.cpp
View file @
c82263ac
...
...
@@ -1022,7 +1022,7 @@ Core::ICore *SubversionPlugin::coreInstance()
SubversionPlugin
*
SubversionPlugin
::
subversionPluginInstance
()
{
QTC_ASSERT
(
m_subversionPluginInstance
,
m_subversionPluginInstance
);
QTC_ASSERT
(
m_subversionPluginInstance
,
return
m_subversionPluginInstance
);
return
m_subversionPluginInstance
;
}
...
...
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