all repos — fluxbox @ f89c71c0db3ace047429028c6b3e21e1016c3f03

custom fork of the fluxbox windowmanager

obsolete getTitle() from win client change to title()
fluxgen fluxgen
commit

f89c71c0db3ace047429028c6b3e21e1016c3f03

parent

084232bf59c9f41f5d95bd7cb6e20c855477f3ce

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/ClientPattern.ccsrc/ClientPattern.cc

@@ -20,7 +20,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: ClientPattern.cc,v 1.5 2003/11/17 00:29:30 fluxgen Exp $ +// $Id: ClientPattern.cc,v 1.6 2003/12/17 01:19:39 fluxgen Exp $ #include "ClientPattern.hh" #include "RegExp.hh"

@@ -238,7 +238,7 @@

std::string ClientPattern::getProperty(WinProperty prop, const WinClient &client) const { switch (prop) { case TITLE: - return client.getTitle(); + return client.title(); break; case CLASS: return client.getWMClassClass();