aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/FocusableList.cc4
-rw-r--r--src/FocusableList.hh4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/FocusableList.cc b/src/FocusableList.cc
index 87c5bcc..0850943 100644
--- a/src/FocusableList.cc
+++ b/src/FocusableList.cc
@@ -73,7 +73,7 @@ const FocusableList *FocusableList::getListFromOptions(BScreen &scr, int opts) {
73 &scr.focusControl().focusedOrderList(); 73 &scr.focusControl().focusedOrderList();
74} 74}
75 75
76FocusableList::FocusableList(BScreen &scr, const string pat): 76FocusableList::FocusableList(BScreen &scr, const string & pat):
77 m_pat(0), m_parent(0), m_screen(scr) { 77 m_pat(0), m_parent(0), m_screen(scr) {
78 78
79 int options = 0; 79 int options = 0;
@@ -86,7 +86,7 @@ FocusableList::FocusableList(BScreen &scr, const string pat):
86} 86}
87 87
88FocusableList::FocusableList(BScreen &scr, const FocusableList &parent, 88FocusableList::FocusableList(BScreen &scr, const FocusableList &parent,
89 const string pat): 89 const string & pat):
90 m_pat(new ClientPattern(pat.c_str())), m_parent(&parent), m_screen(scr) { 90 m_pat(new ClientPattern(pat.c_str())), m_parent(&parent), m_screen(scr) {
91 91
92 init(); 92 init();
diff --git a/src/FocusableList.hh b/src/FocusableList.hh
index a56fdbd..88bba44 100644
--- a/src/FocusableList.hh
+++ b/src/FocusableList.hh
@@ -49,9 +49,9 @@ public:
49 }; 49 };
50 50
51 FocusableList(BScreen &scr): m_pat(0), m_parent(0), m_screen(scr) { } 51 FocusableList(BScreen &scr): m_pat(0), m_parent(0), m_screen(scr) { }
52 FocusableList(BScreen &scr, const std::string pat); 52 FocusableList(BScreen &scr, const std::string & pat);
53 FocusableList(BScreen &scr, const FocusableList &parent, 53 FocusableList(BScreen &scr, const FocusableList &parent,
54 const std::string pat); 54 const std::string & pat);
55 55
56 static void parseArgs(const std::string &in, int &opts, std::string &out); 56 static void parseArgs(const std::string &in, int &opts, std::string &out);
57 static const FocusableList *getListFromOptions(BScreen &scr, int opts); 57 static const FocusableList *getListFromOptions(BScreen &scr, int opts);