mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
fix build on mac (take II)
This commit is contained in:
parent
6fb89b1d3e
commit
2983ad732c
@ -738,9 +738,9 @@ void QgsOptions::toggleStandardDeviation( int state )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef Q_WS_X11
|
|
||||||
void QgsOptions::toggleEnableBackbuffer( int state )
|
void QgsOptions::toggleEnableBackbuffer( int state )
|
||||||
{
|
{
|
||||||
|
#ifdef Q_WS_X11
|
||||||
if ( Qt::Checked == state )
|
if ( Qt::Checked == state )
|
||||||
{
|
{
|
||||||
labelUpdateThreshold->setEnabled( false );
|
labelUpdateThreshold->setEnabled( false );
|
||||||
@ -751,8 +751,10 @@ void QgsOptions::toggleEnableBackbuffer( int state )
|
|||||||
labelUpdateThreshold->setEnabled( true );
|
labelUpdateThreshold->setEnabled( true );
|
||||||
spinBoxUpdateThreshold->setEnabled( true );
|
spinBoxUpdateThreshold->setEnabled( true );
|
||||||
}
|
}
|
||||||
}
|
#else
|
||||||
|
Q_UNUSED( state );
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
QString QgsOptions::theme()
|
QString QgsOptions::theme()
|
||||||
{
|
{
|
||||||
|
@ -74,11 +74,9 @@ class QgsOptions : public QDialog, private Ui::QgsOptionsBase
|
|||||||
|
|
||||||
void toggleStandardDeviation( int );
|
void toggleStandardDeviation( int );
|
||||||
|
|
||||||
#ifdef Q_WS_X11
|
|
||||||
//! Slot to change backbuffering. This is handled when the user changes
|
//! Slot to change backbuffering. This is handled when the user changes
|
||||||
// the value of the checkbox
|
// the value of the checkbox
|
||||||
void toggleEnableBackbuffer( int );
|
void toggleEnableBackbuffer( int );
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the desired state of newly added layers. If a layer
|
* Return the desired state of newly added layers. If a layer
|
||||||
|
Loading…
x
Reference in New Issue
Block a user