Navigation Menu

Skip to content

Commit

Permalink
Merge pull request Razor-qt#640 from luis-pereira/unify-desktop-plugi…
Browse files Browse the repository at this point in the history
…n-widgets-name

razorqt-desktop: Unify plugins and widgets names. Closes Razor-qt#447
  • Loading branch information
kuzmas committed Jul 25, 2013
2 parents feaf023 + e850dcb commit 8b7b6aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libraries/razorqt/addplugindialog/addplugindialog.ui
Expand Up @@ -11,7 +11,7 @@
</rect>
</property>
<property name="windowTitle">
<string>Add plugins</string>
<string>Add Desktop Widgets</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
Expand Down
4 changes: 2 additions & 2 deletions razorqt-desktop/desktop-razor/desktopscene.cpp
Expand Up @@ -93,11 +93,11 @@ DesktopScene::DesktopScene(QObject * parent)
connect(m_actAddNewPlugin, SIGNAL(triggered()),
this, SLOT(showAddPluginDialog()));

m_actRemovePlugin = new QAction(tr("Remove Plugin..."), this);
m_actRemovePlugin = new QAction(tr("Remove Desktop Widget..."), this);
connect(m_actRemovePlugin, SIGNAL(triggered()),
this, SLOT(removePlugin()));

m_actConfigurePlugin = new QAction(tr("Configure Plugin..."), this);
m_actConfigurePlugin = new QAction(tr("Configure Desktop Widget..."), this);
connect(m_actConfigurePlugin, SIGNAL(triggered()),
this, SLOT(configurePlugin()));

Expand Down

0 comments on commit 8b7b6aa

Please sign in to comment.