~ubuntu-branches/ubuntu/utopic/psi/utopic

« back to all changes in this revision

Viewing changes to src/tools/spellchecker/aspellchecker.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
#include <QDir>
29
29
#include <QCoreApplication>
 
30
#include <QtDebug>
30
31
 
31
32
#include "aspell.h"
32
33
#include "aspellchecker.h"
47
48
                speller_ = to_aspell_speller(ret);
48
49
        }
49
50
        else {
50
 
                qWarning(QString("Aspell error: %1").arg(aspell_error_message(ret)).toAscii());
 
51
                qWarning() << QString("Aspell error: %1").arg(aspell_error_message(ret));
51
52
        }
52
53
}
53
54