~ubuntu-branches/ubuntu/jaunty/soprano/jaunty

« back to all changes in this revision

Viewing changes to backends/redland/redlandqueryresult.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2009-02-27 20:07:11 UTC
  • mfrom: (1.1.14 upstream) (12.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090227200711-xhshx5mctbk1jdfl
Tags: 2.2.2+dfsg.1-1ubuntu1
* Merge from Debian unstable - remaining Kubuntu changes:
  - Non library files split out into soprano-daemon
  - Drop libsoprano4.symbols.in until Karmic when we can get the symbols
    generation tools properly integrated into the Kubuntu toolset
  - Specify DEB_DH_MAKESHLIBS_ARGS_libsoprano4 in debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
 
49
49
        isGraph = librdf_query_results_is_graph( result ) != 0;
50
50
        isBinding = librdf_query_results_is_bindings( result ) != 0;
51
 
        if ( isBool = librdf_query_results_is_boolean( result ) ) {
 
51
        if ( ( isBool = librdf_query_results_is_boolean( result ) ) ) {
52
52
            boolResult = librdf_query_results_get_boolean( result ) > 0;
53
53
        }
54
54
    }