-rw-r--r-- | core/pim/todo/templatedialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/todo/templatedialog.cpp b/core/pim/todo/templatedialog.cpp index ffcdc24..c94f69c 100644 --- a/core/pim/todo/templatedialog.cpp +++ b/core/pim/todo/templatedialog.cpp @@ -23,25 +23,25 @@ TemplateDialog::TemplateDialog( QWidget* widget ) m_btnBar = new QHBox( this ); m_add = new QPushButton( tr("Add"), m_btnBar ); m_edit = new QPushButton( tr("Edit"), m_btnBar ); m_rem = new QPushButton( tr("Remove"), m_btnBar ); m_main->addWidget( m_btnBar ); connect(m_add, SIGNAL(clicked() ), this, SLOT(slotAdd() ) ); connect(m_edit, SIGNAL(clicked() ), this, SLOT(slotEdit() ) ); connect(m_rem, SIGNAL(clicked() ), - this, SLOT(slotEdit() ) ); + this, SLOT(slotRemove() ) ); connect(m_lne, SIGNAL(returnPressed() ), this, SLOT(slotReturn() ) ); } TemplateDialog::~TemplateDialog() { // Qt does delete our widgets } QListView* TemplateDialog::listView() { return m_list; } QLineEdit* TemplateDialog::edit() { return m_lne; |