summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/Dbx_mdbx/src/dbcheck.cpp15
-rw-r--r--plugins/Dbx_mdbx/src/dbintf.cpp14
2 files changed, 15 insertions, 14 deletions
diff --git a/plugins/Dbx_mdbx/src/dbcheck.cpp b/plugins/Dbx_mdbx/src/dbcheck.cpp
index 6faa00095e..d64f9094e3 100644
--- a/plugins/Dbx_mdbx/src/dbcheck.cpp
+++ b/plugins/Dbx_mdbx/src/dbcheck.cpp
@@ -100,3 +100,18 @@ int CDbxMDBX::CheckEvents3(void)
return 0;
}
+
+
+///////////////////////////////////////////////////////////////////////////////
+// MIDatabaseChecker
+
+int CDbxMDBX::CheckDb(int phase)
+{
+ switch (phase) {
+ case 0: return CheckEvents1();
+ case 1: return CheckEvents2();
+ case 2: return CheckEvents3();
+ }
+
+ return ERROR_OUT_OF_PAPER;
+}
diff --git a/plugins/Dbx_mdbx/src/dbintf.cpp b/plugins/Dbx_mdbx/src/dbintf.cpp
index 73cd10b497..9d3e44a910 100644
--- a/plugins/Dbx_mdbx/src/dbintf.cpp
+++ b/plugins/Dbx_mdbx/src/dbintf.cpp
@@ -330,17 +330,3 @@ void CDbxMDBX::TouchFile()
CloseHandle(hFile);
}
}
-
-///////////////////////////////////////////////////////////////////////////////
-// MIDatabaseChecker
-
-int CDbxMDBX::CheckDb(int phase)
-{
- switch (phase) {
- case 0: return CDbxMDBX::CheckEvents1();
- case 1: return CDbxMDBX::CheckEvents2();
- case 2: return CDbxMDBX::CheckEvents3();
- }
-
- return ERROR_OUT_OF_PAPER;
-}