author | zecke <zecke> | 2005-02-08 23:18:38 (UTC) |
---|---|---|
committer | zecke <zecke> | 2005-02-08 23:18:38 (UTC) |
commit | 615923bafaffe90dd7c860d094f4cf3680b6d103 (patch) (side-by-side diff) | |
tree | 0ac5fe38c6f5b568601eec24f7861aece2d6a01f | |
parent | 426e43a3d110cb09aa99f47da2a73f53ee5aad7e (diff) | |
download | opie-615923bafaffe90dd7c860d094f4cf3680b6d103.zip opie-615923bafaffe90dd7c860d094f4cf3680b6d103.tar.gz opie-615923bafaffe90dd7c860d094f4cf3680b6d103.tar.bz2 |
Fix for #1550 start at QPEApplication::qpeDir() + "sounds/"
as basedirectory
-rw-r--r-- | noncore/tools/clock/clock.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/tools/clock/clock.cpp b/noncore/tools/clock/clock.cpp index 0ad69d9..3473d01 100644 --- a/noncore/tools/clock/clock.cpp +++ b/noncore/tools/clock/clock.cpp @@ -5,33 +5,33 @@ ** ** This file may be distributed and/or modified under the terms of the ** GNU General Public License version 2 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. ** ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** ** See http://www.trolltech.com/gpl/ for GPL licensing information. ** ** Contact info@trolltech.com if any conditions of this licensing are ** not clear to you. ** **********************************************************************/ // changes added and Copyright (C) by L. J. Potter <ljp@llornkcor.com> 2002 -// changes added and Copyright (C) by Holger Freyther 2004 +// changes added and Copyright (C) by Holger Freyther 2004,2005 #include "clock.h" #include "analogclock.h" #include <qtabwidget.h> #include <opie2/ofiledialog.h> #include <qpe/qpeapplication.h> #include <qpe/qcopenvelope_qws.h> #include <qpe/config.h> #include <qpe/timestring.h> #include <qpe/alarmserver.h> #include <qpe/sound.h> #include <qpe/resource.h> @@ -788,24 +788,24 @@ bool Clock::spinBoxValid( QSpinBox *sb ) valid = FALSE; if ( v < sb->minValue() || v > sb->maxValue() ) valid = FALSE; return valid; } void Clock::slotBrowseMp3File() { Config config( "qpe" ); config.setGroup("Time"); QMap<QString, QStringList> map; map.insert(tr("All"), QStringList() ); QStringList text; text << "audio/*"; map.insert(tr("Audio"), text ); - QString str = Opie::Ui::OFileDialog::getOpenFileName( 2,"/", QString::null, map); + QString str = Opie::Ui::OFileDialog::getOpenFileName( 2, QPEApplication::qpeDir() + "sounds/", QString::null, map); if(!str.isEmpty() ) { config.writeEntry("mp3Alarm",1); config.writeEntry("mp3File",str); sndFileName->setText( str ); scheduleApplyDailyAlarm(); } } |