Skip to content
Permalink
Browse files
Fix coverity uninitialized member warnings
  • 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.
@@ -235,6 +235,7 @@ QString QgsAttributeActionDialog::textForType( QgsAction::ActionType type )
case QgsAction::OpenUrl:
return tr( "Open URL" );
}
return QString();
}

void QgsAttributeActionDialog::remove()
@@ -18,6 +18,7 @@
#include <QStringList>

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

}
@@ -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() );

0 comments on commit 99e5352

Please sign in to comment.