Skip to content

Commit 90ae728

Browse files
committed
fix text format widget connection
1 parent cec5aaa commit 90ae728

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/gui/qgstextformatwidget.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,7 @@ void QgsTextFormatWidget::on_mBufferUnitWidget_changed()
10941094
updateFont( mRefFont );
10951095
}
10961096

1097-
void QgsTextFormatWidget::on_mCoordXDDBtn_dataDefinedActivated( bool active )
1097+
void QgsTextFormatWidget::on_mCoordXDDBtn_activated( bool active )
10981098
{
10991099
if ( !active ) //no data defined alignment without data defined position
11001100
{
@@ -1106,7 +1106,7 @@ void QgsTextFormatWidget::on_mCoordXDDBtn_dataDefinedActivated( bool active )
11061106
}
11071107
}
11081108

1109-
void QgsTextFormatWidget::on_mCoordYDDBtn_dataDefinedActivated( bool active )
1109+
void QgsTextFormatWidget::on_mCoordYDDBtn_activated( bool active )
11101110
{
11111111
if ( !active ) //no data defined alignment without data defined position
11121112
{

src/gui/qgstextformatwidget.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ class GUI_EXPORT QgsTextFormatWidget : public QWidget, protected Ui::QgsTextForm
173173
void on_mFontMinPixelSpinBox_valueChanged( int px );
174174
void on_mFontMaxPixelSpinBox_valueChanged( int px );
175175
void on_mBufferUnitWidget_changed();
176-
void on_mCoordXDDBtn_dataDefinedActivated( bool active );
177-
void on_mCoordYDDBtn_dataDefinedActivated( bool active );
176+
void on_mCoordXDDBtn_activated( bool active );
177+
void on_mCoordYDDBtn_activated( bool active );
178178
void on_mShapeTypeCmbBx_currentIndexChanged( int index );
179179
void on_mShapeRotationCmbBx_currentIndexChanged( int index );
180180
void on_mShapeSVGParamsBtn_clicked();

0 commit comments

Comments
 (0)