Skip to content

Commit

Permalink
Fix coverity uninitialized member warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 4, 2016
1 parent d8dc02d commit 99e5352
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app/qgsattributeactiondialog.cpp
Expand Up @@ -235,6 +235,7 @@ QString QgsAttributeActionDialog::textForType( QgsAction::ActionType type )
case QgsAction::OpenUrl:
return tr( "Open URL" );
}
return QString();
}

void QgsAttributeActionDialog::remove()
Expand Down
1 change: 1 addition & 0 deletions src/core/qgsattributetableconfig.cpp
Expand Up @@ -18,6 +18,7 @@
#include <QStringList>

QgsAttributeTableConfig::QgsAttributeTableConfig()
: mActionWidgetStyle( DropDown )
{

}
Expand Down
1 change: 1 addition & 0 deletions src/gui/attributetable/qgsattributetableview.cpp
Expand Up @@ -43,6 +43,7 @@ QgsAttributeTableView::QgsAttributeTableView( QWidget *parent )
, mActionPopup( nullptr )
, mRowSectionAnchor( 0 )
, mCtrlDragSelectionFlag( QItemSelectionModel::Select )
, mActionWidget( nullptr )
{
QSettings settings;
restoreGeometry( settings.value( "/BetterAttributeTable/geometry" ).toByteArray() );
Expand Down

0 comments on commit 99e5352

Please sign in to comment.