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

« back to all changes in this revision

Viewing changes to nepomuk/ui/kedittagsdialog.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:
70
70
    QLabel* newTagLabel = new QLabel(i18nc("@label", "Create new tag:"));
71
71
    m_newTagEdit = new KLineEdit(this);
72
72
    m_newTagEdit->setClearButtonShown(true);
73
 
    connect(m_newTagEdit, SIGNAL(textEdited(const QString&)),
74
 
            this, SLOT(slotTextEdited(const QString&)));
 
73
    connect(m_newTagEdit, SIGNAL(textEdited(QString)),
 
74
            this, SLOT(slotTextEdited(QString)));
75
75
 
76
76
    QHBoxLayout* newTagLayout = new QHBoxLayout();
77
77
    newTagLayout->addWidget(newTagLabel);