aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Sucan <jan@jansucan.com>2020-04-05 08:28:08 (GMT)
committerJan Sucan <jan@jansucan.com>2020-04-05 08:28:08 (GMT)
commit625a690067b694afcde1aee7181dbe6ee6877727 (patch)
tree89f14d0cc66575512d872bb4c3c69808af682e58
parentd679deebda429e0c7dbc63d61cb3b66f78627541 (diff)
downloadfluxbox-625a690067b694afcde1aee7181dbe6ee6877727.zip
fluxbox-625a690067b694afcde1aee7181dbe6ee6877727.tar.bz2
Add missing scope to a method definition
-rw-r--r--src/SystemTray.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SystemTray.cc b/src/SystemTray.cc
index 1953baa..8c42877 100644
--- a/src/SystemTray.cc
+++ b/src/SystemTray.cc
@@ -135,7 +135,7 @@ private:
135 bool m_xembedded; // using xembed protocol? (i.e. unmap when done) 135 bool m_xembedded; // using xembed protocol? (i.e. unmap when done)
136}; 136};
137 137
138void TrayWindow::pinByClassname(const std::vector<std::string> &left, 138void SystemTray::TrayWindow::pinByClassname(const std::vector<std::string> &left,
139 const std::vector<std::string> &right) { 139 const std::vector<std::string> &right) {
140 // based on the parsed order list and a given window sets m_order to 140 // based on the parsed order list and a given window sets m_order to
141 // an ordinal used to sort the tray icons. 141 // an ordinal used to sort the tray icons.