~ubuntu-branches/ubuntu/precise/latexila/precise

« back to all changes in this revision

Viewing changes to src/document.vala

  • Committer: Bazaar Package Importer
  • Author(s): Tanguy Ortolo
  • Date: 2011-05-02 00:26:08 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110502002608-r2wsjn5jan9h54ol
Tags: 2.0.7-1
* New upstream release (bug and typo fixes). (LP: #731514)
* Rebuilt with debhelper >= 8.1.5 to detect the dependency on the dconf
  backend. (Closes: #620388)

Show diffs side-by-side

added added

removed removed

Lines of Context:
278
278
    private void update_project_id ()
279
279
    {
280
280
        unowned Gee.LinkedList<Project?> projects =
281
 
            AppSettings.get_default ().get_projects ();
 
281
            Projects.get_default ().get_projects ();
282
282
 
283
283
        for (int i = 0 ; i < projects.size ; i++)
284
284
        {
529
529
        if (project_id == -1)
530
530
            return location;
531
531
 
532
 
        Project? project = AppSettings.get_default ().get_project (project_id);
 
532
        Project? project = Projects.get_default ().get (project_id);
533
533
        if (project == null)
534
534
            return location;
535
535