~ubuntu-branches/debian/jessie/sqlheavy/jessie

« back to all changes in this revision

Viewing changes to sqlheavy/sqlheavy-row.vala

  • Committer: Package Import Robot
  • Author(s): Devid Antonio Filoni
  • Date: 2012-05-17 09:47:17 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120517094717-ue17pqaud5tywjj5
Tags: 0.1.1-1
* New upstream release (Closes: #663320).
* Fix debug-package-should-be-priority-extra lintian warning.
* debian/control: switch to vala-0.16 in Build-Depends field.
* debian/libsqlheavy-dev.install, debian/libsqlheavygtk-dev.install:
  install files in vala-0.16 dir.
* Update libsqlheavy0.1-0.symbols.amd64 file.
* debian/rules: update override_dh_makeshlibs target.
* Bump Standards-Version to 3.9.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
 
176
176
      lock ( this.values ) {
177
177
        if ( this.values == null )
178
 
          this.values = new GLib.Value[field_count];
 
178
          this.values = new GLib.Value?[field_count];
179
179
 
180
180
        this.values[field] = value;
181
181
      }
251
251
          fc = this.field_count;
252
252
 
253
253
          if ( this.cache == null )
254
 
            this.cache = new GLib.Value[fc];
 
254
            this.cache = new GLib.Value?[fc];
255
255
        }
256
256
 
257
257
        var query = new SQLHeavy.Query (this.table.queryable, @"SELECT * FROM `$(this.table.name)` WHERE `ROWID` = :id;");