Skip to content

Commit

Permalink
Fix warnings and small api doc improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Jan 5, 2015
1 parent bb16a44 commit 4d88ca7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/app/qgisapp.cpp
Expand Up @@ -383,6 +383,7 @@ void QgisApp::emitCustomSrsValidation( QgsCoordinateReferenceSystem &srs )

void QgisApp::layerTreeViewDoubleClicked( const QModelIndex& index )
{
Q_UNUSED( index )
QSettings settings;
switch ( settings.value( "/qgis/legendDoubleClickAction", 0 ).toInt() )
{
Expand Down
1 change: 1 addition & 0 deletions src/gui/qgsmessagelogviewer.cpp
Expand Up @@ -34,6 +34,7 @@ QgsMessageLogViewer::QgsMessageLogViewer( QStatusBar *statusBar, QWidget *parent
: QDialog( parent, fl )
, mShowToolTips( true )
{
Q_UNUSED( statusBar )
setupUi( this );

connect( QgsMessageLog::instance(), SIGNAL( messageReceived( QString, QString, QgsMessageLog::MessageLevel ) ),
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsmessagelogviewer.h
Expand Up @@ -29,7 +29,7 @@ class QShowEvent;
class QHideEvent;

/** \ingroup gui
* A generic message for displaying QGIS log messages.
* A generic dialog widget for displaying QGIS log messages.
*/
class GUI_EXPORT QgsMessageLogViewer: public QDialog, private Ui::QgsMessageLogViewer
{
Expand Down

0 comments on commit 4d88ca7

Please sign in to comment.