~ubuntu-branches/ubuntu/utopic/kde4libs/utopic

« back to all changes in this revision

Viewing changes to kdecore/sonnet/tests/test_dialog.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Kolberg
  • Date: 2012-03-03 00:25:28 UTC
  • mfrom: (1.14.15)
  • Revision ID: package-import@ubuntu.com-20120303002528-chhwyfluldkicy5k
Tags: 4:4.8.1-0ubuntu1
* New upstream release
  - Update symbol files

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
{
41
41
    Sonnet::Dialog *dlg = new Sonnet::Dialog(
42
42
        new BackgroundChecker( this ), 0);
43
 
    connect( dlg, SIGNAL(done(const QString&)),
44
 
             SLOT(doneChecking(const QString&)) );
 
43
    connect( dlg, SIGNAL(done(QString)),
 
44
             SLOT(doneChecking(QString)) );
45
45
    dlg->setBuffer( buffer );
46
46
    dlg->show();
47
47
}