SVN commit 1222395 by apol: Backported some actions to the mobile functions dialog so that we have all the features we can. M +6 -0 functionsdialog.cpp --- branches/KDE/4.6/kdeedu/kalgebra/mobile/functionsdialog.cpp #1222394:1222395 @@ -40,6 +40,12 @@ QPushButton* add = new QPushButton(KIcon("list-add"), i18n("Add"), this); connect(add, SIGNAL(clicked(bool)), SLOT(addFunction())); actionsLayout->addWidget(add); + QPushButton* remove = new QPushButton(KIcon("list-remove"), i18n("Remove"), this); + connect(remove, SIGNAL(clicked(bool)), SLOT(removeFunction())); + actionsLayout->addWidget(remove); + QPushButton* clear = new QPushButton(KIcon("edit-clear-list"), i18n("Clear"), this); + connect(clear, SIGNAL(clicked(bool)), SLOT(clearFunctions())); + actionsLayout->addWidget(clear); layout()->addItem(actionsLayout); QDialogButtonBox* box = new QDialogButtonBox(QDialogButtonBox::Close);