-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathkdevplatform.rb
39 lines (32 loc) · 1.14 KB
/
kdevplatform.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
require File.join(File.dirname(__FILE__), 'base_kde_formula')
class Kdevplatform < BaseKdeFormula
homepage 'http://kdevelop.org/'
url 'http://download.kde.org/stable/kdevelop/4.7.2/src/kdevplatform-1.7.2.tar.xz'
sha1 'eed01990b91e81bffeb24104da604ee7b8f45cad'
def patches
DATA
end
depends_on 'grantlee'
depends_on 'kdelibs'
kde_build_deps
end
__END__
--- a/project/abstractfilemanagerplugin.cpp
+++ b/project/abstractfilemanagerplugin.cpp
@@ -472,7 +472,9 @@
connect(d->m_watchers[project], SIGNAL(deleted(QString)),
this, SLOT(deleted(QString)));
+#ifndef Q_OS_MAC
d->m_watchers[project]->addDir(project->path().toLocalFile(), KDirWatch::WatchSubDirs | KDirWatch:: WatchFiles );
+#endif
}
d->m_filters.add(project);
--- a/plugins/standardoutputview/outputwidget.cpp
+++ b/plugins/standardoutputview/outputwidget.cpp
@@ -422,7 +422,7 @@
? iface->previousHighlightIndex( index )
: iface->nextHighlightIndex( index );
- kDebug() << "old:" << index << "- new:" << newIndex;
+ //kDebug() << "old:" << index << "- new:" << newIndex;
activateIndex(newIndex, view, iface);
}