author | llornkcor <llornkcor> | 2002-09-25 16:26:19 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-09-25 16:26:19 (UTC) |
commit | d44c455b86d6cccbc497e3e8d8aa399096eff7db (patch) (side-by-side diff) | |
tree | 8dd582c828f21ff11a99800159df2b982dbfcc48 | |
parent | a546a6ea143da9244a06f1e40829254e8bf4dc8f (diff) | |
download | opie-d44c455b86d6cccbc497e3e8d8aa399096eff7db.zip opie-d44c455b86d6cccbc497e3e8d8aa399096eff7db.tar.gz opie-d44c455b86d6cccbc497e3e8d8aa399096eff7db.tar.bz2 |
fix qpeDir() to return users dir, not qpeDir.. duh
-rw-r--r-- | library/qpeapplication.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index c107a08..bdf67b9 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp @@ -791,36 +791,37 @@ QPEApplication::~QPEApplication() } /*! Returns <tt>$OPIEDIR/</tt>. */ QString QPEApplication::qpeDir() { const char * base = getenv( "OPIEDIR" ); if ( base ) return QString( base ) + "/"; return QString( "../" ); } /*! Returns the user's current Document directory. There is a trailing "/". + .. well, it does now,, and there's no trailing '/' */ QString QPEApplication::documentDir() { - return QString( qpeDir() + "Documents"); + return QString( QDir::homeDirPath() + "/Documents"); } static int deforient = -1; /*! \internal */ int QPEApplication::defaultRotation() { if ( deforient < 0 ) { QString d = getenv( "QWS_DISPLAY" ); if ( d.contains( "Rot90" ) ) { deforient = 90; } else if ( d.contains( "Rot180" ) ) { deforient = 180; |