diff options
author | fluxgen <fluxgen> | 2003-12-17 01:19:39 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-12-17 01:19:39 (GMT) |
commit | f89c71c0db3ace047429028c6b3e21e1016c3f03 (patch) | |
tree | 61049e0dfa72af40148a118859ed0b2808aa4420 | |
parent | 084232bf59c9f41f5d95bd7cb6e20c855477f3ce (diff) | |
download | fluxbox-f89c71c0db3ace047429028c6b3e21e1016c3f03.zip fluxbox-f89c71c0db3ace047429028c6b3e21e1016c3f03.tar.bz2 |
obsolete getTitle() from win client change to title()
-rw-r--r-- | src/ClientPattern.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ClientPattern.cc b/src/ClientPattern.cc index 5c110fc..f41ccb0 100644 --- a/src/ClientPattern.cc +++ b/src/ClientPattern.cc | |||
@@ -20,7 +20,7 @@ | |||
20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
21 | // DEALINGS IN THE SOFTWARE. | 21 | // DEALINGS IN THE SOFTWARE. |
22 | 22 | ||
23 | // $Id: ClientPattern.cc,v 1.5 2003/11/17 00:29:30 fluxgen Exp $ | 23 | // $Id: ClientPattern.cc,v 1.6 2003/12/17 01:19:39 fluxgen Exp $ |
24 | 24 | ||
25 | #include "ClientPattern.hh" | 25 | #include "ClientPattern.hh" |
26 | #include "RegExp.hh" | 26 | #include "RegExp.hh" |
@@ -238,7 +238,7 @@ bool ClientPattern::addTerm(const std::string &str, WinProperty prop) { | |||
238 | std::string ClientPattern::getProperty(WinProperty prop, const WinClient &client) const { | 238 | std::string ClientPattern::getProperty(WinProperty prop, const WinClient &client) const { |
239 | switch (prop) { | 239 | switch (prop) { |
240 | case TITLE: | 240 | case TITLE: |
241 | return client.getTitle(); | 241 | return client.title(); |
242 | break; | 242 | break; |
243 | case CLASS: | 243 | case CLASS: |
244 | return client.getWMClassClass(); | 244 | return client.getWMClassClass(); |