Skip to content
Snippets Groups Projects
Commit 11a08a25 authored by Robert Loehning's avatar Robert Loehning
Browse files

Commented switch to avoid warning from MSVC.


Reviewed-by: default avatarThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
parent 5f1af52a
No related branches found
No related tags found
No related merge requests found
......@@ -587,12 +587,12 @@ QVariant BreakHandler::data(const QModelIndex &mi, int role) const
Qt::ItemFlags BreakHandler::flags(const QModelIndex &mi) const
{
switch (mi.column()) {
//switch (mi.column()) {
//case 0:
// return Qt::ItemIsUserCheckable | Qt::ItemIsEnabled;
default:
//default:
return QAbstractTableModel::flags(mi);
}
//}
}
bool BreakHandler::setData(const QModelIndex &mi, const QVariant &value, int role)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment