~ubuntu-branches/ubuntu/quantal/ark/quantal

« back to all changes in this revision

Viewing changes to part/archivemodel.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2012-06-06 18:50:49 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20120606185049-z43lsy5wwp3wtrgt
Tags: 4:4.8.80-0ubuntu1
* Merge with Debian git repository, remaining changes:
  - Suggest instead of recommend p7zip-full
  - Add and install utilities-file-archiver.xpm
* New upstream beta release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#define ARCHIVEMODEL_H
24
24
 
25
25
#include <QAbstractItemModel>
 
26
#include <QScopedPointer>
 
27
 
26
28
#include <kjobtrackerinterface.h>
27
29
#include "kerfuffle/archive.h"
28
30
 
115
117
 
116
118
    QList<Kerfuffle::ArchiveEntry> m_newArchiveEntries; // holds entries from opening a new archive until it's totally open
117
119
    QList<int> m_showColumns;
118
 
    Kerfuffle::Archive *m_archive;
 
120
    QScopedPointer<Kerfuffle::Archive> m_archive;
119
121
    ArchiveDirNode *m_rootNode;
120
122
};
121
123