~ubuntu-branches/ubuntu/precise/kde4libs/precise-security

« back to all changes in this revision

Viewing changes to kdeui/dialogs/kshortcuteditwidget.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:
77
77
 
78
78
    connect(m_defaultRadio, SIGNAL(toggled(bool)),
79
79
            this, SLOT(defaultToggled(bool)));
80
 
    connect(m_customEditor, SIGNAL(keySequenceChanged(const QKeySequence &)),
81
 
            this, SLOT(setCustom(const QKeySequence &)));
82
 
    connect(m_customEditor, SIGNAL(stealShortcut(const QKeySequence &, KAction *)),
83
 
        this, SIGNAL(stealShortcut(const QKeySequence &, KAction *)));
 
80
    connect(m_customEditor, SIGNAL(keySequenceChanged(QKeySequence)),
 
81
            this, SLOT(setCustom(QKeySequence)));
 
82
    connect(m_customEditor, SIGNAL(stealShortcut(QKeySequence,KAction*)),
 
83
        this, SIGNAL(stealShortcut(QKeySequence,KAction*)));
84
84
}
85
85
 
86
86