~ubuntu-branches/ubuntu/lucid/kdepim-runtime/lucid

« back to all changes in this revision

Viewing changes to tray/global.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2009-12-03 15:38:40 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20091203153840-x5fxfsfby0czyqu6
Tags: 4:4.3.80-0ubuntu1
* New upstream beta release:
  - Refresh all patches
  - Bump build-depend versions
  - Remove build-depend on libknotificationitem-dev, it's part of
    kdelibs5-dev now
  - Add build-depend on shared-desktop-ontologies for nepomuk support
  - Add build-depend on libstreamanalyzer-dev for strigi support
  - Add build-depend on libx11-dev to prevent FTBFS
  - Update various .install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
    const QString host = settings.value( "Host", "" ).toString();
44
44
    if ( host.isEmpty() ) {
45
45
        const QString options = settings.value( "Options", "" ).toString();
46
 
        const QStringList list = options.split( "=" );
 
46
        const QStringList list = options.split( '=' );
47
47
        m_dboptions.append( "--socket=" + list.at( 1 ) );
48
48
    } else {
49
49
        m_dboptions.append( "--host=" + host );