summaryrefslogtreecommitdiff
path: root/sfx2/source/control/recentdocsview.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/control/recentdocsview.cxx')
-rw-r--r--sfx2/source/control/recentdocsview.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/control/recentdocsview.cxx b/sfx2/source/control/recentdocsview.cxx
index 414f1236ce9f..61a2f35ac861 100644
--- a/sfx2/source/control/recentdocsview.cxx
+++ b/sfx2/source/control/recentdocsview.cxx
@@ -154,21 +154,21 @@ bool RecentDocsView::typeMatchesExtension(ApplicationType type, const OUString &
{
bool bRet = false;
- if (rExt == "odt" || rExt == "doc" || rExt == "docx" ||
+ if (rExt == "odt" || rExt == "fodt" || rExt == "doc" || rExt == "docx" ||
rExt == "rtf" || rExt == "txt" || rExt == "odm" || rExt == "otm")
{
bRet = static_cast<bool>(type & ApplicationType::TYPE_WRITER);
}
- else if (rExt == "ods" || rExt == "xls" || rExt == "xlsx")
+ else if (rExt == "ods" || rExt == "fods" || rExt == "xls" || rExt == "xlsx")
{
bRet = static_cast<bool>(type & ApplicationType::TYPE_CALC);
}
- else if (rExt == "odp" || rExt == "pps" || rExt == "ppt" ||
+ else if (rExt == "odp" || rExt == "fodp" || rExt == "pps" || rExt == "ppt" ||
rExt == "pptx")
{
bRet = static_cast<bool>(type & ApplicationType::TYPE_IMPRESS);
}
- else if (rExt == "odg")
+ else if (rExt == "odg" || rExt == "fodg")
{
bRet = static_cast<bool>(type & ApplicationType::TYPE_DRAW);
}