~ubuntu-branches/debian/sid/kdesvn/sid

« back to all changes in this revision

Viewing changes to src/svnfrontend/loaddmpdlg_impl.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2009-04-18 21:41:53 UTC
  • mfrom: (1.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090418214153-bdc4nd10fs47i8jp
Tags: 1.3.0-1
* New upstream release.
* debian/control
  - Bump Standards-Version to 3.8.1. No further changes.
  - Change Section of kdesvn-dbg to debug.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
{
92
92
    KUrl u = m_Repository->url();
93
93
    QString res = u.path();
94
 
    while (res.endsWith("/")) {
 
94
    while (res.endsWith('/')) {
95
95
        res.truncate(res.length()-1);
96
96
    }
97
97
    return res;
104
104
QString LoadDmpDlg_impl::parentPath()const
105
105
{
106
106
    QString res = m_Rootfolder->text();
107
 
    while (res.endsWith("/")) {
 
107
    while (res.endsWith('/')) {
108
108
        res.truncate(res.length()-1);
109
109
    }
110
110
    return res;