application/window.c

changeset 94
7fdf1489b82f
parent 92
43aee6c8c166
child 95
e92c72705da4
--- a/application/window.c	Wed Nov 27 16:48:59 2024 +0100
+++ b/application/window.c	Wed Nov 27 17:14:57 2024 +0100
@@ -29,7 +29,7 @@
 #include "window.h"
 
 #include "davcontroller.h"
-#include "settings.h"
+#include "appsettings.h"
 
 #include <ui/stock.h>
 #include <ui/dnd.h>
@@ -136,9 +136,9 @@
                     "http://apache.org/dav/props/",
                     "executable");
             cxmutstr flags = cx_asprintf("%s%s%s",
-                    settings_get_cryptoflag(keyprop ? 1 : 0),
-                    settings_get_lockflag(lockdiscovery ? 1 : 0),
-                    settings_get_execflag(executable ? 1 : 0));
+                    appsettings_get_cryptoflag(keyprop ? 1 : 0),
+                    appsettings_get_lockflag(lockdiscovery ? 1 : 0),
+                    appsettings_get_execflag(executable ? 1 : 0));
             return flags.ptr;
         }
         case 3: { // type

mercurial