aboutsummaryrefslogtreecommitdiff
path: root/src/ClientPattern.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/ClientPattern.cc')
-rw-r--r--src/ClientPattern.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ClientPattern.cc b/src/ClientPattern.cc
index 41080fa..d6c7212 100644
--- a/src/ClientPattern.cc
+++ b/src/ClientPattern.cc
@@ -341,13 +341,13 @@ bool ClientPattern::addTerm(const string &str, WinProperty prop, bool negate) {
341 return true; 341 return true;
342} 342}
343 343
344string ClientPattern::getProperty(WinProperty prop, const Focusable &client) { 344FbTk::FbString ClientPattern::getProperty(WinProperty prop, const Focusable &client) {
345 // we need this for some of the window properties 345 // we need this for some of the window properties
346 const FluxboxWindow *fbwin = client.fbwindow(); 346 const FluxboxWindow *fbwin = client.fbwindow();
347 347
348 switch (prop) { 348 switch (prop) {
349 case TITLE: 349 case TITLE:
350 return client.title(); 350 return client.title().logical();
351 break; 351 break;
352 case CLASS: 352 case CLASS:
353 return client.getWMClassClass(); 353 return client.getWMClassClass();