~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to buildtools/qmake/scope.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé, Jeremy Lainé, Fathi Boudra
  • Date: 2009-09-10 06:45:12 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090910064512-862n2mvqyvbaa1r4
Tags: 4:3.5.5-1
* New upstream release.

[ Jeremy Lainé ]
* Change Build-Depends on libdb4.6-dev to libdb4.7-dev (Closes: #539222).

[ Fathi Boudra ]
* Drop common patches. They cause a ftbfs since autotools/libtools upgrade.
* Add debian/compat file.
* Update debian/control:
  - Bump cdbs and debhelper build dependencies version.
  - Replace autoconf and automake Build-depends by automake1.10.
  - Add graphviz build-dependency to get dot program, needed by the class
    browser.
  - Add libneon27-gnutls-dev and libserf-0-0-dev build dependencies.
  - Bump Standards-Version from 3.8.1 to 3.8.3 (add debian/README.source).
* Update debian/rules:
  - Build with --no-undefined and --as-needed linker flags.

Show diffs side-by-side

added added

removed removed

Lines of Context:
158
158
        if( DomUtil::readBoolEntry( *m_part->projectDom(),
159
159
            "/kdevtrollproject/qmake/showParseErrors", true ) )
160
160
        {
161
 
            KMessageBox::error( 0, i18n( "Couldn't parse project file: %1" ).arg( filename ),
162
 
                    i18n( "Couldn't parse project file" ) );
 
161
            KMessageBox::error( 0, i18n( "Could not parse project file: %1" ).arg( filename ),
 
162
                    i18n( "Could not parse project file" ) );
163
163
        }
164
164
        m_root = 0;
165
165
        return false;
198
198
        file.close();
199
199
    }else
200
200
    {
201
 
        KMessageBox::error( 0, i18n( "Couldn't write project file: %1" ).arg( filename ),
202
 
                i18n( "Couldn't write project file" ) );
 
201
        KMessageBox::error( 0, i18n( "Could not write project file: %1" ).arg( filename ),
 
202
                i18n( "Could not write project file" ) );
203
203
    }
204
204
#ifdef DEBUG
205
205
    Scope::PrintAST pa;