Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/UI/Agent/Agent.cpp')
-rwxr-xr-x7zip/UI/Agent/Agent.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/7zip/UI/Agent/Agent.cpp b/7zip/UI/Agent/Agent.cpp
index 9c573414..eb37b84f 100755
--- a/7zip/UI/Agent/Agent.cpp
+++ b/7zip/UI/Agent/Agent.cpp
@@ -325,6 +325,13 @@ STDMETHODIMP CAgentFolder::GetPath(BSTR *path)
return S_OK;
COM_TRY_END
}
+
+STDMETHODIMP CAgentFolder::SetFlatMode(Int32 flatMode)
+{
+ _flatMode = IntToBool(flatMode);
+ return S_OK;
+}
+
#endif
void CAgentFolder::GetRealIndices(const UINT32 *indices, UINT32 numItems, CUIntVector &realIndices) const
@@ -390,13 +397,6 @@ STDMETHODIMP CAgentFolder::Extract(const UINT32 *indices,
COM_TRY_END
}
-STDMETHODIMP CAgentFolder::SetFlatMode(Int32 flatMode)
-{
- _flatMode = IntToBool(flatMode);
- return S_OK;
-}
-
-
/////////////////////////////////////////
// CAgent