Changeset 14150 for trunk/qt/favicon.cc
- Timestamp:
- Jul 27, 2013, 9:58:14 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt/favicon.cc
r11522 r14150 11 11 */ 12 12 13 #include <QDesktopServices>14 13 #include <QDir> 15 14 #include <QNetworkAccessManager> 16 15 #include <QNetworkReply> 17 16 #include <QNetworkRequest> 17 #include <QStandardPaths> 18 18 19 19 #include "favicon.h" … … 41 41 Favicons :: getCacheDir( ) 42 42 { 43 const QString base = Q DesktopServices::storageLocation( QDesktopServices::CacheLocation);43 const QString base = QStandardPaths::writableLocation (QStandardPaths::CacheLocation); 44 44 return QDir( base ).absoluteFilePath( "favicons" ); 45 45 }
Note: See TracChangeset
for help on using the changeset viewer.