Fixed misuse of "/rd/1" (changed to "/sys") for some programs

git-svn-id: svn://kolibrios.org@9585 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
vitalkrilov
2022-01-07 01:01:22 +00:00
parent 00d6588c05
commit 97e3188585
19 changed files with 36 additions and 36 deletions

View File

@@ -47,7 +47,7 @@ bool KolibriOnStart(TStartData &kos_start, TThreadData /*th*/)
cold.procinfo = procinfo;
cold.com_area_name = "FFFFFFFF_color_dialog";
cold.com_area = 0;
cold.start_path = "/rd/1/colrdial";
cold.start_path = "/sys/colrdial";
cold.draw_window = DrawWindow;
cold.status = 0;
cold.x_size = 420;

View File

@@ -48,8 +48,8 @@ bool KolibriOnStart(TStartData &kos_start, TThreadData /*th*/)
ofd.com_area_name = "FFFFFFFF_open_dialog";
ofd.com_area = 0;
ofd.opendir_path = plugin_path;
ofd.dir_default_path = "/rd/1";
ofd.start_path = "/rd/1/File managers/opendial";
ofd.dir_default_path = "/sys";
ofd.start_path = "/sys/File managers/opendial";
ofd.draw_window = DrawWindow;
ofd.status = 0;
ofd.openfile_path = openfile_path;

View File

@@ -444,8 +444,8 @@ bool KolibriOnStart(TStartData &kos_start, TThreadData /*th*/)
ofd.com_area_name = "FFFFFFFF_open_dialog";
ofd.com_area = 0;
ofd.opendir_path = plugin_path;
ofd.dir_default_path = "/rd/1";
ofd.start_path = "/rd/1/File managers/opendial";
ofd.dir_default_path = "/sys";
ofd.start_path = "/sys/File managers/opendial";
ofd.draw_window = DrawWindow;
ofd.status = 0;
ofd.openfile_path = openfile_path;
@@ -611,4 +611,4 @@ bool KolibriOnClose(TThreadData /*th*/)
if(f_data) delete f_data;
if(model_list) delete model_list;
return true;
}
}