Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Krusader
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Utilities
Krusader
Commits
fe971b9e
Commit
fe971b9e
authored
Dec 31, 2020
by
Alexander Lohnau
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use consistently emit keyword
GIT_SILENT
parent
45b6f97c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
krusader/Panel/krcolorcache.cpp
krusader/Panel/krcolorcache.cpp
+2
-2
krusader/panelmanager.cpp
krusader/panelmanager.cpp
+1
-1
No files found.
krusader/Panel/krcolorcache.cpp
View file @
fe971b9e
...
...
@@ -750,7 +750,7 @@ void KrColorCache::refreshColors()
m_impl
->
m_cachedColors
.
clear
();
m_impl
->
m_colorSettings
=
KrColorSettings
();
QPixmapCache
::
clear
();
// dimmed icons are cached
Q_EMIT
colorsRefreshed
();
emit
colorsRefreshed
();
}
void
KrColorCache
::
setColors
(
const
KrColorSettings
&
colorSettings
)
...
...
@@ -758,6 +758,6 @@ void KrColorCache::setColors(const KrColorSettings & colorSettings)
m_impl
->
m_cachedColors
.
clear
();
m_impl
->
m_colorSettings
=
colorSettings
;
QPixmapCache
::
clear
();
// dimmed icons are cached
Q_EMIT
colorsRefreshed
();
emit
colorsRefreshed
();
}
krusader/panelmanager.cpp
View file @
fe971b9e
...
...
@@ -155,7 +155,7 @@ ListPanel* PanelManager::createPanel(const KConfigGroup& cfg)
void
PanelManager
::
connectPanel
(
ListPanel
*
p
)
{
connect
(
p
,
&
ListPanel
::
activate
,
this
,
&
PanelManager
::
activate
);
connect
(
p
,
&
ListPanel
::
pathChanged
,
this
,
[
=
]()
{
Q_EMIT
pathChanged
(
p
);
});
connect
(
p
,
&
ListPanel
::
pathChanged
,
this
,
[
=
]()
{
emit
pathChanged
(
p
);
});
connect
(
p
,
&
ListPanel
::
pathChanged
,
this
,
[
=
]()
{
_tabbar
->
updateTab
(
p
);
});
}
...
...
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