File tree 1 file changed +5
-6
lines changed
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 185
185
#include < windows.h>
186
186
#endif
187
187
188
- using namespace std ;
189
188
class QTreeWidgetItem ;
190
189
191
190
/* typedefs for plugins */
@@ -2664,10 +2663,10 @@ findLayer_( QString const & fileFilters, QDomNode const & constLayerNode )
2664
2663
*/
2665
2664
static
2666
2665
void
2667
- findLayers_ ( QString const & fileFilters, list<QDomNode> const & layerNodes )
2666
+ findLayers_ ( QString const & fileFilters, std:: list<QDomNode> const & layerNodes )
2668
2667
{
2669
2668
2670
- for ( list<QDomNode>::const_iterator i = layerNodes.begin ();
2669
+ for ( std:: list<QDomNode>::const_iterator i = layerNodes.begin ();
2671
2670
i != layerNodes.end ();
2672
2671
++i )
2673
2672
{
@@ -3163,9 +3162,9 @@ void QgisApp::fileSaveAs()
3163
3162
QSettings settings;
3164
3163
QString lastUsedDir = settings.value ( " /UI/lastProjectDir" , " ." ).toString ();
3165
3164
3166
- auto_ptr<QFileDialog> saveFileDialog ( new QFileDialog ( this ,
3167
- tr ( " Choose a file name to save the QGIS project file as" ),
3168
- lastUsedDir, QObject::tr ( " QGis files (*.qgs)" ) ) );
3165
+ std:: auto_ptr<QFileDialog> saveFileDialog ( new QFileDialog ( this ,
3166
+ tr ( " Choose a file name to save the QGIS project file as" ),
3167
+ lastUsedDir, QObject::tr ( " QGis files (*.qgs)" ) ) );
3169
3168
3170
3169
saveFileDialog->setFileMode ( QFileDialog::AnyFile );
3171
3170
You can’t perform that action at this time.
0 commit comments