Update the database in a different thread so it doesn't freeze the main

thread.
Show PIN in a dialog instead of a notification popup.
Translations updated.
This commit is contained in:
codestation
2013-08-30 11:10:43 -04:30
parent b46156b507
commit 04853712d0
27 changed files with 772 additions and 133 deletions

View File

@@ -34,21 +34,21 @@ public:
~CMAObject();
void refreshPath();
void rename(const QString &name);
bool removeReferencedObject();
void initObject(const QFileInfo &file);
void rename(const QString &name);
void updateObjectSize(qint64 size);
bool hasParent(const CMAObject *obj);
void initObject(const QFileInfo &file);
bool operator==(const CMAObject &obj);
bool operator!=(const CMAObject &obj);
bool operator<(const CMAObject &obj);
void setOhfi(int ohfi) {
inline void setOhfi(int ohfi) {
metadata.ohfi = ohfi;
}
static void resetOhfiCounter() {
inline static void resetOhfiCounter() {
ohfi_count = OHFI_OFFSET;
}