diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2008-09-22 05:44:40 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2008-09-22 05:44:40 (GMT) |
commit | 984fb5bef200cd7db7a9a13354f50b55919978af (patch) | |
tree | b2706993533d5f5613d2920e283ff90cee1d45cb /src | |
parent | ed53f3c623e7c3ae35672b33ae3b52759dc1a6ed (diff) | |
download | fluxbox_pavel-984fb5bef200cd7db7a9a13354f50b55919978af.zip fluxbox_pavel-984fb5bef200cd7db7a9a13354f50b55919978af.tar.bz2 |
cosmetics
Diffstat (limited to 'src')
-rw-r--r-- | src/Screen.cc | 6 |
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 | ||