Git commit 637e61bd49bd4e4df09b465743bfdb9b71d06e4a by Raphael Kubo da Costa. Committed on 03/09/2012 at 23:36. Pushed by rkcosta into branch 'KDE/4.9'.
Fix typo in the method name. CCMAIL: [email protected] M +2 -2 services/queryservice/folder.cpp http://commits.kde.org/nepomuk-core/637e61bd49bd4e4df09b465743bfdb9b71d06e4a diff --git a/services/queryservice/folder.cpp b/services/queryservice/folder.cpp index b4ab5c6..e5fc55d 100644 --- a/services/queryservice/folder.cpp +++ b/services/queryservice/folder.cpp @@ -101,7 +101,7 @@ namespace { } } - void intiWatcherForQuery(ResourceWatcher* watcher, const Nepomuk2::Query::Query& query) { + void initWatcherForQuery(ResourceWatcher* watcher, const Nepomuk2::Query::Query& query) { // The empty property is for comparison terms which do not have a property // in that case we want to monitor all properties bool emptyProperty = false; @@ -122,7 +122,7 @@ void Nepomuk2::Query::Folder::init() m_updateTimer.setInterval( 2000 ); ResourceWatcher* watcher = new ResourceWatcher( this ); - intiWatcherForQuery( watcher, m_query ); + initWatcherForQuery( watcher, m_query ); connect( watcher, SIGNAL(propertyAdded(Nepomuk2::Resource,Nepomuk2::Types::Property,QVariant)), this, SLOT(slotStorageChanged()) ); _______________________________________________ Nepomuk mailing list [email protected] https://mail.kde.org/mailman/listinfo/nepomuk
