Skip to content

Commit

Permalink
Remove extra slashes from paths. I patched the debian package for thi…
Browse files Browse the repository at this point in the history
…s because it caused some kind of problem, but I've forgotten what it

was.


git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5558 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
shalasz committed Jul 1, 2006
1 parent 467a502 commit df5b9e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/qgisapp.cpp
Expand Up @@ -2423,9 +2423,9 @@ void QgisApp::newVectorLayer()
filename = openFileDialog->selectedFile();
enc = openFileDialog->encoding();

settings.writeEntry("/UI//lastVectorFileFilter", openFileDialog->selectedFilter());
settings.writeEntry("/UI/lastVectorFileFilter", openFileDialog->selectedFilter());

settings.writeEntry("/UI//lastVectorFileFilterDir", openFileDialog->directory().absolutePath());
settings.writeEntry("/UI/lastVectorFileFilterDir", openFileDialog->directory().absolutePath());
settings.writeEntry("/UI/encoding", openFileDialog->encoding());

delete openFileDialog;
Expand Down

0 comments on commit df5b9e5

Please sign in to comment.