mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Removing "ede" prefix for config files
This commit is contained in:
parent
5d602fc6c0
commit
421a09304f
@ -120,7 +120,7 @@ void EvokeService::read_startup(void) {
|
|||||||
#else
|
#else
|
||||||
/* only system resource will be loaded; use ede-startup will be skipped */
|
/* only system resource will be loaded; use ede-startup will be skipped */
|
||||||
Resource c;
|
Resource c;
|
||||||
int ret = c.load("ede/ede-startup");
|
int ret = c.load("ede-startup");
|
||||||
#endif
|
#endif
|
||||||
if(!ret) {
|
if(!ret) {
|
||||||
E_WARNING(E_STRLOC ": Unable to load EDE startup file\n");
|
E_WARNING(E_STRLOC ": Unable to load EDE startup file\n");
|
||||||
|
@ -210,7 +210,7 @@ bool Xsm::load_serialized(void) {
|
|||||||
String file = SETTINGS_FILENAME".conf";
|
String file = SETTINGS_FILENAME".conf";
|
||||||
#else
|
#else
|
||||||
/* try to find it in home directory, then will scan for the system one */
|
/* try to find it in home directory, then will scan for the system one */
|
||||||
String file = Resource::find_config("ede/"SETTINGS_FILENAME);
|
String file = Resource::find_config(SETTINGS_FILENAME);
|
||||||
if(file.empty()) {
|
if(file.empty()) {
|
||||||
E_WARNING(E_STRLOC ": Unable to load XSETTINGS data from '%s'\n", file.c_str());
|
E_WARNING(E_STRLOC ": Unable to load XSETTINGS data from '%s'\n", file.c_str());
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user