Skip to content

Commit

Permalink
fix text format widget connection
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Feb 23, 2017
1 parent cec5aaa commit 90ae728
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/gui/qgstextformatwidget.cpp
Expand Up @@ -1094,7 +1094,7 @@ void QgsTextFormatWidget::on_mBufferUnitWidget_changed()
updateFont( mRefFont );
}

void QgsTextFormatWidget::on_mCoordXDDBtn_dataDefinedActivated( bool active )
void QgsTextFormatWidget::on_mCoordXDDBtn_activated( bool active )
{
if ( !active ) //no data defined alignment without data defined position
{
Expand All @@ -1106,7 +1106,7 @@ void QgsTextFormatWidget::on_mCoordXDDBtn_dataDefinedActivated( bool active )
}
}

void QgsTextFormatWidget::on_mCoordYDDBtn_dataDefinedActivated( bool active )
void QgsTextFormatWidget::on_mCoordYDDBtn_activated( bool active )
{
if ( !active ) //no data defined alignment without data defined position
{
Expand Down
4 changes: 2 additions & 2 deletions src/gui/qgstextformatwidget.h
Expand Up @@ -173,8 +173,8 @@ class GUI_EXPORT QgsTextFormatWidget : public QWidget, protected Ui::QgsTextForm
void on_mFontMinPixelSpinBox_valueChanged( int px );
void on_mFontMaxPixelSpinBox_valueChanged( int px );
void on_mBufferUnitWidget_changed();
void on_mCoordXDDBtn_dataDefinedActivated( bool active );
void on_mCoordYDDBtn_dataDefinedActivated( bool active );
void on_mCoordXDDBtn_activated( bool active );
void on_mCoordYDDBtn_activated( bool active );
void on_mShapeTypeCmbBx_currentIndexChanged( int index );
void on_mShapeRotationCmbBx_currentIndexChanged( int index );
void on_mShapeSVGParamsBtn_clicked();
Expand Down

0 comments on commit 90ae728

Please sign in to comment.