summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/launcher.cpp1
-rw-r--r--core/launcher/launcher.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/core/launcher/launcher.cpp b/core/launcher/launcher.cpp
index 222592b..b26bd8b 100644
--- a/core/launcher/launcher.cpp
+++ b/core/launcher/launcher.cpp
@@ -518,16 +518,17 @@ void Launcher::loadDocs() // ok here comes a hack belonging to Global::
518 if( stamp == m_timeStamp ){ // ok we know this card 518 if( stamp == m_timeStamp ){ // ok we know this card
519 cfg.writeEntry("timestamp", newStamp ); 519 cfg.writeEntry("timestamp", newStamp );
520 // we need to scan the list now. Hopefully the cache will be there 520 // we need to scan the list now. Hopefully the cache will be there
521 }else{ // come up with the gui 521 }else{ // come up with the gui
522 MediumMountGui medium((*it)->path() + "/.opiestorage.cf" ); 522 MediumMountGui medium((*it)->path() + "/.opiestorage.cf" );
523 if( medium.check() ){ 523 if( medium.check() ){
524 if( medium.exec() ){ //ok 524 if( medium.exec() ){ //ok
525 // speicher 525 // speicher
526 cfg.writeEntry("timestamp", newStamp );
526 } 527 }
527 }else{ 528 }else{
528 // do something different see what we need to do 529 // do something different see what we need to do
529 } 530 }
530 } 531 }
531 } 532 }
532 } 533 }
533 Global::findDocuments(docsFolder); // get rid of this call later 534 Global::findDocuments(docsFolder); // get rid of this call later
diff --git a/core/launcher/launcher.h b/core/launcher/launcher.h
index 00ae980..197bd19 100644
--- a/core/launcher/launcher.h
+++ b/core/launcher/launcher.h
@@ -126,11 +126,13 @@ private:
126 CategoryTabWidget *tabs; 126 CategoryTabWidget *tabs;
127 StorageInfo *storage; 127 StorageInfo *storage;
128 SyncDialog *syncDialog; 128 SyncDialog *syncDialog;
129 129
130 void updateLink(const QString& link); 130 void updateLink(const QString& link);
131 bool in_lnk_props; 131 bool in_lnk_props;
132 bool got_lnk_change; 132 bool got_lnk_change;
133 QString lnk_change; 133 QString lnk_change;
134 QString m_timeStamp;
134}; 135};
135 136
136#endif // LAUNCHERVIEW_H 137#endif // LAUNCHERVIEW_H
138