summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Screen.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index 8746fd2..cde62cc 100644
--- a/src/Screen.cc
+++ b/src/Screen.cc
@@ -1030,10 +1030,10 @@ void BScreen::addIcon(FluxboxWindow *w) {
1030 if (find(iconList().begin(), iconList().end(), w) != iconList().end()) 1030 if (find(iconList().begin(), iconList().end(), w) != iconList().end())
1031 return; 1031 return;
1032 1032
1033 m_icon_list.push_back(w); 1033 iconList().push_back(w);
1034 1034
1035 // notify listeners 1035 // notify listeners
1036 m_iconlist_sig.emit(*this); 1036 iconListSig().emit(*this);
1037} 1037}
1038 1038
1039 1039
@@ -1048,7 +1048,7 @@ void BScreen::removeIcon(FluxboxWindow *w) {
1048 // change the iconlist 1048 // change the iconlist
1049 if (erase_it != m_icon_list.end()) { 1049 if (erase_it != m_icon_list.end()) {
1050 iconList().erase(erase_it); 1050 iconList().erase(erase_it);
1051 m_iconlist_sig.emit(*this); 1051 iconListSig().emit(*this);
1052 } 1052 }
1053} 1053}
1054 1054