Skip to content

Commit d97d4a6

Browse files
committedNov 6, 2012
Merge branch 'master' of https://github.com/qgis/Quantum-GIS
2 parents a2e6a48 + ff78ef1 commit d97d4a6

File tree

5 files changed

+8
-2
lines changed

5 files changed

+8
-2
lines changed
 

‎python/plugins/sextante/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ ADD_SUBDIRECTORY(pymorph)
1818
ADD_SUBDIRECTORY(r)
1919
ADD_SUBDIRECTORY(saga)
2020
ADD_SUBDIRECTORY(script)
21+
ADD_SUBDIRECTORY(servertools)
2122
ADD_SUBDIRECTORY(taudem)
2223
#ADD_SUBDIRECTORY(tests)
2324

‎src/app/composer/qgscomposer.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ QgsComposer::QgsComposer( QgisApp *qgis, const QString& title )
267267
mPanelMenu->addAction( mUndoDock->toggleViewAction() );
268268
mAtlasDock = new QDockWidget( tr( "Atlas generation" ), this );
269269
mAtlasDock->setObjectName( "AtlasDock" );
270+
mPanelMenu->addAction( mAtlasDock->toggleViewAction() );
270271

271272
mGeneralDock->setFeatures( QDockWidget::DockWidgetMovable | QDockWidget::DockWidgetClosable );
272273
mItemDock->setFeatures( QDockWidget::DockWidgetMovable | QDockWidget::DockWidgetClosable );

‎src/app/legend/qgslegend.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2158,6 +2158,8 @@ void QgsLegend::removePixmapHeightValue( int height )
21582158

21592159
void QgsLegend::handleCloseEditor( QWidget * editor, QAbstractItemDelegate::EndEditHint hint )
21602160
{
2161+
Q_UNUSED( editor );
2162+
Q_UNUSED( hint );
21612163
QgsLegendItem *item = dynamic_cast<QgsLegendItem *>( currentItem() );
21622164
if ( item )
21632165
{

‎src/app/qgspluginmanager.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,10 @@ void QgsPluginManager::getPythonPluginDescriptions()
211211
myData.setRenderAsWidget( false );
212212
myData.setChecked( false ); //start off assuming false
213213

214-
if ( iconName == "__error__" or iconName.isEmpty() )
214+
if ( iconName == "__error__" || iconName.isEmpty() )
215+
{
215216
myData.setIcon( QPixmap( QgsApplication::defaultThemePath() + "/plugin.png" ) );
217+
}
216218
else
217219
{
218220
bool relative = QFileInfo( iconName ).isRelative();

‎src/gui/qgsmessagebar.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ QgsMessageBar::QgsMessageBar( QWidget *parent )
4444

4545
mCloseBtn = new QToolButton( this );
4646
mCloseBtn->setToolTip( tr( "Close" ) );
47-
mCloseBtn->setStyleSheet( "background-color: rgba(255, 255, 255, 0);" );
47+
mCloseBtn->setStyleSheet( "QToolButton {background-color: rgba(255, 255, 255, 0);}" );
4848
mCloseBtn->setCursor( Qt::PointingHandCursor );
4949
mCloseBtn->setIcon( QgsApplication::getThemeIcon( "/mIconClose.png" ) );
5050
connect( mCloseBtn, SIGNAL( clicked() ), this, SLOT( popWidget() ) );

0 commit comments

Comments
 (0)
Please sign in to comment.