diff MySQL/Plugins/MySQLIndex.cpp @ 586:3b1070dcab2f find-refactoring tip

fix
author Alain Mazy <am@orthanc.team>
date Mon, 04 Nov 2024 22:52:58 +0100
parents a80775ee5eea
children
line wrap: on
line diff
--- a/MySQL/Plugins/MySQLIndex.cpp	Mon Nov 04 18:38:32 2024 +0100
+++ b/MySQL/Plugins/MySQLIndex.cpp	Mon Nov 04 22:52:58 2024 +0100
@@ -39,8 +39,9 @@
 namespace OrthancDatabases
 {
   MySQLIndex::MySQLIndex(OrthancPluginContext* context,
-                         const MySQLParameters& parameters) :
-    IndexBackend(context),
+                         const MySQLParameters& parameters,
+                         bool readOnly) :
+    IndexBackend(context, readOnly),
     parameters_(parameters),
     clearAll_(false)
   {