Mercurial > hg > svgui
comparison widgets/PluginPathConfigurator.cpp @ 1295:11888b7e193d plugin-path-config
Fix erroneous tooltip
author | Chris Cannam |
---|---|
date | Wed, 06 Jun 2018 15:55:49 +0100 |
parents | 9f9a7edd7d89 |
children | 34b941921ac8 |
comparison
equal
deleted
inserted
replaced
1294:9f9a7edd7d89 | 1295:11888b7e193d |
---|---|
48 connect(m_up, SIGNAL(clicked()), this, SLOT(upClicked())); | 48 connect(m_up, SIGNAL(clicked()), this, SLOT(upClicked())); |
49 buttons->addWidget(m_up); | 49 buttons->addWidget(m_up); |
50 | 50 |
51 m_add = new QPushButton; | 51 m_add = new QPushButton; |
52 m_add->setIcon(IconLoader().load("plus")); | 52 m_add->setIcon(IconLoader().load("plus")); |
53 m_add->setToolTip(tr("Move the selected location earlier in the list")); | 53 m_add->setToolTip(tr("Add a new location to the list")); |
54 connect(m_add, SIGNAL(clicked()), this, SLOT(addClicked())); | 54 connect(m_add, SIGNAL(clicked()), this, SLOT(addClicked())); |
55 buttons->addWidget(m_add); | 55 buttons->addWidget(m_add); |
56 | 56 |
57 m_delete = new QPushButton; | 57 m_delete = new QPushButton; |
58 m_delete->setIcon(IconLoader().load("datadelete")); | 58 m_delete->setIcon(IconLoader().load("datadelete")); |