Skip to content

Commit a8f8dcd

Browse files
author
wonder
committedMar 3, 2011
Also enable antialiasing with QPixmap in options dialog
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@15325 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

2 files changed

+0
-26
lines changed

2 files changed

+0
-26
lines changed
 

‎src/app/qgsoptions.cpp

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -760,30 +760,6 @@ void QgsOptions::on_pbnSelectProjection_clicked()
760760

761761
}
762762

763-
void QgsOptions::on_chkAntiAliasing_stateChanged()
764-
{
765-
// We can't have the anti-aliasing turned on when QPixmap is being
766-
// used (we we can. but it then doesn't do anti-aliasing, and this
767-
// will confuse people).
768-
if ( chkAntiAliasing->isChecked() )
769-
{
770-
chkUseQPixmap->setChecked( false );
771-
}
772-
773-
}
774-
775-
void QgsOptions::on_chkUseQPixmap_stateChanged()
776-
{
777-
// We can't have the anti-aliasing turned on when QPixmap is being
778-
// used (we we can. but it then doesn't do anti-aliasing, and this
779-
// will confuse people).
780-
if ( chkUseQPixmap->isChecked() )
781-
{
782-
chkAntiAliasing->setChecked( false );
783-
}
784-
785-
}
786-
787763
// Return state of the visibility flag for newly added layers. If
788764

789765
bool QgsOptions::newVisible()

‎src/app/qgsoptions.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ class QgsOptions : public QDialog, private Ui::QgsOptionsBase
5050
public slots:
5151
//! Slot called when user chooses to change the project wide projection.
5252
void on_pbnSelectProjection_clicked();
53-
void on_chkAntiAliasing_stateChanged();
54-
void on_chkUseQPixmap_stateChanged();
5553
void saveOptions();
5654
//! Slot to change the theme this is handled when the user
5755
// activates or highlights a theme name in the drop-down list

0 commit comments

Comments
 (0)
Please sign in to comment.