Fixed open folder in shared files in portable version.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3834 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2010-11-20 14:50:14 +00:00
parent 7bcebc8e2b
commit f0f3dc413a
3 changed files with 20 additions and 29 deletions

View file

@ -63,18 +63,18 @@ class RemoteDirModel : public QAbstractItemModel
void postMods();
/* Callback from GUI */
void downloadSelected(QModelIndexList list);
void downloadSelected(const QModelIndexList &list);
void getDirDetailsFromSelect (QModelIndexList list, std::vector <DirDetails>& dirVec);
void getDirDetailsFromSelect (const QModelIndexList &list, std::vector <DirDetails>& dirVec);
int getType ( const QModelIndex & index ) const ;
//void openFile(QModelIndex fileIndex, const QString command);
void getFileInfoFromIndexList(const QModelIndexList& list, std::list<DirDetails>& files_info) ;
void openSelected(QModelIndexList list, bool openFolder);
void openSelected(const QModelIndexList &list);
void getFilePaths(QModelIndexList list, std::list<std::string> &fullpaths);
void getFilePaths(const QModelIndexList &list, std::list<std::string> &fullpaths);
void changeAgeIndicator(uint32_t indicator) { ageIndicator = indicator; }