author | sandman <sandman> | 2002-10-09 23:01:34 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-10-09 23:01:34 (UTC) |
commit | d624bf47913f76c881f28c6498cec4ad3c007a9b (patch) (side-by-side diff) | |
tree | f86e449f8f5153580bead802c9c6f73dd76c3a11 /library/lnkproperties.cpp | |
parent | ecd41d0df770747bb07de5fa3e920adb164affbe (diff) | |
download | opie-d624bf47913f76c881f28c6498cec4ad3c007a9b.zip opie-d624bf47913f76c881f28c6498cec4ad3c007a9b.tar.gz opie-d624bf47913f76c881f28c6498cec4ad3c007a9b.tar.bz2 |
Opening documents via the document tab now starts the corresponding app
with the right rotation setting.
Filemanager/AdvanceFM doesn't work -- need to investigate this further.
-rw-r--r-- | library/lnkproperties.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp index 745ee2c..0b50bae 100644 --- a/library/lnkproperties.cpp +++ b/library/lnkproperties.cpp @@ -36,8 +36,9 @@ #include <qpe/filemanager.h> #include <qpe/config.h> #include <qpe/storage.h> #include <qpe/qpemessagebox.h> +#include <qpe/mimetype.h> #include <qlineedit.h> #include <qtoolbutton.h> #include <qpushbutton.h> @@ -274,8 +275,10 @@ bool LnkProperties::copyFile( DocLnk &newdoc ) void LnkProperties::done(int ok) { if ( ok ) { bool changed=FALSE; + bool reloadMime=FALSE; + if ( lnk->name() != d->docname->text() ) { lnk->setName(d->docname->text()); changed=TRUE; } @@ -299,8 +302,9 @@ void LnkProperties::done(int ok) } if ( newrot != lnk->rotation() ) { lnk-> setRotation(newrot); changed = TRUE; + reloadMime = TRUE; } } if ( d->preload->isHidden() && d->locationCombo->currentItem() != currentLocation ) { moveLnk(); @@ -329,8 +333,10 @@ void LnkProperties::done(int ok) } cfg.writeEntry("Apps",apps,','); } } + if ( reloadMime ) + MimeType::updateApplications ( ); } QDialog::done( ok ); } |