X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Ftreemodel.cpp;h=c03da2b029d61acb5c99d9aa784335278673d80a;hp=e481ea8db107a0f7f4b8c1e9f906b63a64f7b3ab;hb=40601ae070413b727a68e35e5b8c619176c661b1;hpb=5b686746c880e5cda6d5de3e08180ea4332ff222 diff --git a/src/client/treemodel.cpp b/src/client/treemodel.cpp index e481ea8d..c03da2b0 100644 --- a/src/client/treemodel.cpp +++ b/src/client/treemodel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 by the Quassel Project * + * Copyright (C) 2005-2014 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -304,7 +304,7 @@ QVariant PropertyMapItem::data(int column, int role) const return toolTip(column); case Qt::DisplayRole: case TreeModel::SortRole: // fallthrough, since SortRole should default to DisplayRole - return property(_propertyOrder[column].toAscii()); + return property(_propertyOrder[column].toLatin1()); default: return QVariant(); } @@ -317,7 +317,7 @@ bool PropertyMapItem::setData(int column, const QVariant &value, int role) return false; emit dataChanged(column); - return setProperty(_propertyOrder[column].toAscii(), value); + return setProperty(_propertyOrder[column].toLatin1(), value); }