* Minor style cleanup.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42296 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2011-06-24 16:20:46 +00:00
parent 50a9a98edb
commit 9674328ebe
@@ -4,6 +4,7 @@
* This file may be used under the terms of the MIT License.
*/
/*! Query parsing and evaluation
The pattern matching is roughly based on code originally written
@@ -11,6 +12,7 @@
it shares no code.
*/
#include "Query.h"
#include <query_private.h>
@@ -22,6 +24,7 @@
#include "Inode.h"
#include "Volume.h"
// The parser has a very static design, but it will do what is required.
//
// ParseOr(), ParseAnd(), ParseEquation() are guarantying the operator
@@ -1657,10 +1660,10 @@ Query::LiveUpdate(Inode* inode, const char* attribute, int32 type,
// notify query listeners
if (stillInQuery)
if (stillInQuery) {
notify_query_attr_changed(fPort, fToken, fVolume->ID(),
fVolume->ToVnode(inode->Parent()), name, inode->ID());
else if (entryCreated) {
} else if (entryCreated) {
notify_query_entry_created(fPort, fToken, fVolume->ID(),
fVolume->ToVnode(inode->Parent()), name, inode->ID());
} else {