Skip to content

Commit

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

was.


git-svn-id: http://svn.osgeo.org/qgis/trunk@5558 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
shalasz committed Jul 1, 2006
1 parent 1ed0915 commit 35e726c
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 35e726c

Please sign in to comment.