From 709f6ba6ae5d2b5461136595a2469bf1fe32ccff Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Mon, 4 Feb 2013 14:14:15 -0500 Subject: fdo#59426: Don't try to repair package during flat detection phase. Change-Id: I35968241a79db0aabe06e25c0efac2aa3d1c5b84 --- comphelper/inc/comphelper/mediadescriptor.hxx | 2 ++ comphelper/source/misc/mediadescriptor.cxx | 6 ++++++ 2 files changed, 8 insertions(+) (limited to 'comphelper') diff --git a/comphelper/inc/comphelper/mediadescriptor.hxx b/comphelper/inc/comphelper/mediadescriptor.hxx index 53dcffc2e5a4..8c55f85af8ea 100644 --- a/comphelper/inc/comphelper/mediadescriptor.hxx +++ b/comphelper/inc/comphelper/mediadescriptor.hxx @@ -94,6 +94,8 @@ class COMPHELPER_DLLPUBLIC MediaDescriptor : public SequenceAsHashMap static const ::rtl::OUString& PROP_VIEWONLY(); static const ::rtl::OUString& PROP_DOCUMENTBASEURL(); + static const OUString& PROP_DEEPDETECTION(); + //------------------------------------------- // interface public: diff --git a/comphelper/source/misc/mediadescriptor.cxx b/comphelper/source/misc/mediadescriptor.cxx index bd7373353c2c..5a217a141672 100644 --- a/comphelper/source/misc/mediadescriptor.cxx +++ b/comphelper/source/misc/mediadescriptor.cxx @@ -296,6 +296,12 @@ const OUString& MediaDescriptor::PROP_DOCUMENTBASEURL() return sProp; } +const OUString& MediaDescriptor::PROP_DEEPDETECTION() +{ + static const OUString aProp("DeepDetection"); + return aProp; +} + MediaDescriptor::MediaDescriptor() : SequenceAsHashMap() { -- cgit