Skip to content

Commit 0f8de7d

Browse files
committedJun 5, 2013
Use qRound. Rename menu item
1 parent fa9d79f commit 0f8de7d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/app/pluginmanager/qgspluginmanager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ void QgsPluginManager::showPluginDetails( QStandardItem * item )
615615
if ( ! metadata->value( "average_vote" ).isEmpty() )
616616
{
617617
// draw stars
618-
int stars = round( metadata->value( "average_vote" ).toFloat() );
618+
int stars = qRound( metadata->value( "average_vote" ).toFloat() );
619619
for ( int i = 0; i < stars; i++ )
620620
{
621621
html += "<img src=\":/images/themes/default/mIconNew.png\">";

‎src/ui/qgisapp.ui

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<x>0</x>
1818
<y>0</y>
1919
<width>1050</width>
20-
<height>18</height>
20+
<height>21</height>
2121
</rect>
2222
</property>
2323
<widget class="QMenu" name="mEditMenu">
@@ -1381,7 +1381,7 @@
13811381
<normaloff>:/images/themes/default/mActionShowPluginManager.png</normaloff>:/images/themes/default/mActionShowPluginManager.png</iconset>
13821382
</property>
13831383
<property name="text">
1384-
<string>Manage Plugins...</string>
1384+
<string>Manage and Install Plugins...</string>
13851385
</property>
13861386
</action>
13871387
<action name="mActionToggleFullScreen">

0 commit comments

Comments
 (0)
Please sign in to comment.