3e7a9f5a41
Aside from many bug fixes and general improvements such as performance optimizations in various areas, which make KDevelop 4.6.0 faster and less memory-hungry, a few changes are especially noteworthy: The ReviewBoard plugin now supports updating existing review requests. There is a new plugin which adds support for building projects with ninja instead of make. CMake support was also stabilized and improved, adding support for missing or new CMake features.
13 lines
515 B
C++
13 lines
515 B
C++
$NetBSD: patch-sublime_aggregatemodel.cpp,v 1.2 2014/02/01 09:54:23 markd Exp $
|
|
|
|
--- sublime/aggregatemodel.cpp.orig 2013-12-07 18:45:39.000000000 +0000
|
|
+++ sublime/aggregatemodel.cpp
|
|
@@ -81,7 +81,7 @@ Qt::ItemFlags AggregateModel::flags(cons
|
|
{
|
|
if (!index.isValid())
|
|
return 0;
|
|
- return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
|
|
+ return Qt::ItemFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable);
|
|
}
|
|
|
|
QVariant AggregateModel::headerData(int section, Qt::Orientation orientation, int role) const
|