mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-26 00:02:08 -05:00
[composer] fix attribute table widget connect warning
This commit is contained in:
parent
02fc2b0858
commit
69e8da0fb1
@ -66,7 +66,7 @@ QgsComposerAttributeTableWidget::QgsComposerAttributeTableWidget( QgsComposerAtt
|
||||
|
||||
mComposerMapComboBox->setComposition( mComposerTable->composition() );
|
||||
mComposerMapComboBox->setItemType( QgsComposerItem::ComposerMap );
|
||||
connect( mComposerMapComboBox, SIGNAL( itemChanged( QgsComposerItem* ) ), this, SLOT( composerMapChanged( const QgsComposerItem* ) ) );
|
||||
connect( mComposerMapComboBox, SIGNAL( itemChanged( QgsComposerItem* ) ), this, SLOT( composerMapChanged( QgsComposerItem* ) ) );
|
||||
|
||||
mHeaderFontColorButton->setColorDialogTitle( tr( "Select header font color" ) );
|
||||
mHeaderFontColorButton->setAllowAlpha( true );
|
||||
@ -176,7 +176,7 @@ void QgsComposerAttributeTableWidget::on_mAttributesPushButton_clicked()
|
||||
}
|
||||
}
|
||||
|
||||
void QgsComposerAttributeTableWidget::composerMapChanged( const QgsComposerItem* item )
|
||||
void QgsComposerAttributeTableWidget::composerMapChanged( QgsComposerItem* item )
|
||||
{
|
||||
if ( !mComposerTable )
|
||||
{
|
||||
|
@ -45,7 +45,7 @@ class QgsComposerAttributeTableWidget: public QgsComposerItemBaseWidget, private
|
||||
private slots:
|
||||
void on_mRefreshPushButton_clicked();
|
||||
void on_mAttributesPushButton_clicked();
|
||||
void composerMapChanged( const QgsComposerItem* item );
|
||||
void composerMapChanged( QgsComposerItem* item );
|
||||
void on_mMaximumRowsSpinBox_valueChanged( int i );
|
||||
void on_mMarginSpinBox_valueChanged( double d );
|
||||
void on_mGridStrokeWidthSpinBox_valueChanged( double d );
|
||||
|
Loading…
x
Reference in New Issue
Block a user