~ubuntu-branches/ubuntu/utopic/nepomuk-core/utopic

« back to all changes in this revision

Viewing changes to services/fileindexer/fileindexer.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-07-26 22:43:09 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120726224309-pf2v1e78ee7uljjp
Tags: 4:4.9.0a-0ubuntu1
* Use direct build-depends versions rather than kde-sc-dev-latest
* New upstream release
* New symbols, rename libnepomukcore4 to libnepomukcore4abi and enable Debian ABI manager

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
            }
189
189
        }
190
190
        else {
191
 
            QString file = KUrl( m_indexScheduler->currentFile() ).fileName();
192
 
 
193
191
            if( autoUpdate ) {
194
192
                return i18nc( "@info:status", "Scanning for recent changes in %1", folder );
195
193
            }
196
194
            else {
197
 
                if( file.isEmpty() )
 
195
                if( m_indexScheduler->currentFile().isEmpty() )
198
196
                    return i18nc( "@info:status", "Indexing files in %1", folder );
199
197
                else
200
 
                    return i18nc( "@info:status", "Indexing %1", file );
 
198
                    return i18nc( "@info:status", "Indexing %1", m_indexScheduler->currentFile() );
201
199
            }
202
200
        }
203
201
    }