mirror of https://github.com/procxx/kepka.git
Enable to handle .pptx .xlsx .docx extensions
This commit is contained in:
parent
53ba300d7e
commit
ef364e998f
|
@ -95,17 +95,20 @@ int32 documentColorIndex(DocumentData *document, QString &ext) {
|
||||||
? document->mimeString().toLower()
|
? document->mimeString().toLower()
|
||||||
: QString();
|
: QString();
|
||||||
if (name.endsWith(qstr(".doc")) ||
|
if (name.endsWith(qstr(".doc")) ||
|
||||||
|
name.endsWith(qstr(".docx")) ||
|
||||||
name.endsWith(qstr(".txt")) ||
|
name.endsWith(qstr(".txt")) ||
|
||||||
name.endsWith(qstr(".psd")) ||
|
name.endsWith(qstr(".psd")) ||
|
||||||
mime.startsWith(qstr("text/"))) {
|
mime.startsWith(qstr("text/"))) {
|
||||||
colorIndex = 0;
|
colorIndex = 0;
|
||||||
} else if (
|
} else if (
|
||||||
name.endsWith(qstr(".xls")) ||
|
name.endsWith(qstr(".xls")) ||
|
||||||
|
name.endsWith(qstr(".xlsx")) ||
|
||||||
name.endsWith(qstr(".csv"))) {
|
name.endsWith(qstr(".csv"))) {
|
||||||
colorIndex = 1;
|
colorIndex = 1;
|
||||||
} else if (
|
} else if (
|
||||||
name.endsWith(qstr(".pdf")) ||
|
name.endsWith(qstr(".pdf")) ||
|
||||||
name.endsWith(qstr(".ppt")) ||
|
name.endsWith(qstr(".ppt")) ||
|
||||||
|
name.endsWith(qstr(".pptx")) ||
|
||||||
name.endsWith(qstr(".key"))) {
|
name.endsWith(qstr(".key"))) {
|
||||||
colorIndex = 2;
|
colorIndex = 2;
|
||||||
} else if (
|
} else if (
|
||||||
|
|
Loading…
Reference in New Issue