~ubuntu-branches/ubuntu/wily/kbibtex/wily

« back to all changes in this revision

Viewing changes to src/comment.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Michael Hanke
  • Date: 2010-07-21 12:02:48 UTC
  • mfrom: (1.1.5 upstream) (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100721120248-9ohlkaiin6aktimd
Tags: 0.2.3.90-1
* New upstream release (Closes: #563684).
* Switch to source package version 3.0 (quilt).
* Bumped Standards-Version to 3.9.0, no changes necessary.
* Link against libyaz to enable Z39.50 support (Closes: #550547).

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
            }
83
83
 
84
84
            /** return success depending on filter type and number of hits */
85
 
            return ( filterType == ftAnyWord && hits > 0 || filterType == ftEveryWord && hits == words.count() );
 
85
            return ( ( filterType == ftAnyWord && hits > 0 ) || ( filterType == ftEveryWord && hits == words.count() ) );
86
86
        }
87
87
    }
88
88