File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -892,7 +892,6 @@ void QgisApp::createStatusBar()
892
892
QPixmap myProjPixmap;
893
893
QString myIconPath = QgsApplication::themePath ();
894
894
myProjPixmap.load (myIconPath+" /mIconProjectionDisabled.png" );
895
- qDebug (" Icon disabled projection icon to: " + myIconPath.toLocal8Bit ()+" /mIconProjectionDisabled.png" );
896
895
mOnTheFlyProjectionStatusButton ->setPixmap (myProjPixmap);
897
896
assert (!myProjPixmap.isNull ());
898
897
QWhatsThis::add (mOnTheFlyProjectionStatusButton , tr (" This icon shows whether on the fly projection is enabled or not. Click the icon to bring up the project properties dialog to alter this behaviour." ));
@@ -4681,15 +4680,13 @@ void QgisApp::projectionsEnabled(bool theFlag)
4681
4680
{
4682
4681
QPixmap myProjPixmap;
4683
4682
myProjPixmap.load (myIconPath+" /mIconProjectionEnabled.png" );
4684
- qDebug (" Icon disabled projection icon to: " + myIconPath.toLocal8Bit ()+" /mIconProjectionEnabled.png" );
4685
4683
assert (!myProjPixmap.isNull ());
4686
4684
mOnTheFlyProjectionStatusButton ->setPixmap (myProjPixmap);
4687
4685
}
4688
4686
else
4689
4687
{
4690
4688
QPixmap myProjPixmap;
4691
4689
myProjPixmap.load (myIconPath+" /mIconProjectionDisabled.png" );
4692
- qDebug (" Icon disabled projection icon to: " + myIconPath.toLocal8Bit ()+" /mIconProjectionDisabled.png" );
4693
4690
assert (!myProjPixmap.isNull ());
4694
4691
mOnTheFlyProjectionStatusButton ->setPixmap (myProjPixmap);
4695
4692
}
Original file line number Diff line number Diff line change @@ -1039,7 +1039,9 @@ void QgsMapCanvas::moveCanvasContents(bool reset)
1039
1039
QPoint pnt (0 ,0 );
1040
1040
if (!reset)
1041
1041
pnt += mCanvasProperties ->mouseLastXY - mCanvasProperties ->rubberStartPoint ;
1042
+ #ifdef QGISDEWBUG
1042
1043
std::cout << " moveCanvasContents: pnt " << pnt.x () << " ," << pnt.y () << std::endl;
1044
+ #endif
1043
1045
1044
1046
mMap ->setPanningOffset (pnt);
1045
1047
You can’t perform that action at this time.
0 commit comments