Skip to content

Commit c04958c

Browse files
author
jef
committed
fix nightly build
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@15531 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 71653bf commit c04958c

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

debian/control.sid

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Build-Depends:
3131
python-sip-dev (>= 4.5.0),
3232
subversion,
3333
doxygen,
34+
graphviz,
3435
txt2tags
3536
Build-Conflicts: libqgis-dev, qgis-dev
3637
Standards-Version: 3.8.4

src/app/qgsvectorlayerproperties.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -1512,7 +1512,11 @@ void QgsVectorLayerProperties::on_mFindMaximumValueButton_clicked()
15121512

15131513
void QgsVectorLayerProperties::on_mBackgroundColorButton_clicked()
15141514
{
1515+
#if QT_VERSION >= 0x040500
15151516
QColor newColor = QColorDialog::getColor( mBackgroundColorButton->color(), 0, tr( "Background color" ), QColorDialog::ShowAlphaChannel );
1517+
#else
1518+
QColor newColor = QColorDialog::getColor( mBackgroundColorButton->color() );
1519+
#endif
15161520
if ( newColor.isValid() )
15171521
{
15181522
mBackgroundColorButton->setColor( newColor );
@@ -1521,7 +1525,11 @@ void QgsVectorLayerProperties::on_mBackgroundColorButton_clicked()
15211525

15221526
void QgsVectorLayerProperties::on_mDiagramPenColorButton_clicked()
15231527
{
1528+
#if QT_VERSION >= 0x040500
15241529
QColor newColor = QColorDialog::getColor( mDiagramPenColorButton->color(), 0, tr( "Pen color" ), QColorDialog::ShowAlphaChannel );
1530+
#else
1531+
QColor newColor = QColorDialog::getColor( mDiagramPenColorButton->color() );
1532+
#endif
15251533
if ( newColor.isValid() )
15261534
{
15271535
mDiagramPenColorButton->setColor( newColor );

src/plugins/sqlanywhere/sasourceselectbase.ui

-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,6 @@
178178
<tabstop>btnEdit</tabstop>
179179
<tabstop>btnDelete</tabstop>
180180
<tabstop>mTablesTreeView</tabstop>
181-
<tabstop>btnBuildQuery</tabstop>
182181
<tabstop>mSearchGroupBox</tabstop>
183182
<tabstop>mSearchTableEdit</tabstop>
184183
<tabstop>mSearchColumnComboBox</tabstop>

0 commit comments

Comments
 (0)