diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/Remember.cc | 7 |
2 files changed, 7 insertions, 3 deletions
@@ -1,5 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.16: | 2 | Changes for 0.9.16: |
3 | *06/03/24: | ||
4 | * Fixed apps filename on save (Thanks mal at komcept com) | ||
5 | Remember.cc | ||
3 | *06/03/23: | 6 | *06/03/23: |
4 | * Fixed duplicate ClickToFocus menu item (Thanks mal at komcept com) | 7 | * Fixed duplicate ClickToFocus menu item (Thanks mal at komcept com) |
5 | * Fix some tab stacking alignment and rendering on tab resize (Simon) | 8 | * Fix some tab stacking alignment and rendering on tab resize (Simon) |
diff --git a/src/Remember.cc b/src/Remember.cc index 07487fb..c134741 100644 --- a/src/Remember.cc +++ b/src/Remember.cc | |||
@@ -543,11 +543,12 @@ void Remember::load() { | |||
543 | } | 543 | } |
544 | 544 | ||
545 | void Remember::save() { | 545 | void Remember::save() { |
546 | |||
547 | string apps_string = FbTk::StringUtil::expandFilename(Fluxbox::instance()->getAppsFilename()); | ||
548 | |||
546 | #ifdef DEBUG | 549 | #ifdef DEBUG |
547 | cerr<<__FILE__<<"("<<__FUNCTION__<<"): Saving apps file..."<<endl; | 550 | cerr<<__FILE__<<"("<<__FUNCTION__<<"): Saving apps file ["<<apps_string<<"]"<<endl; |
548 | #endif // DEBUG | 551 | #endif // DEBUG |
549 | string apps_string; | ||
550 | Fluxbox::instance()->getDefaultDataFilename("apps", apps_string); | ||
551 | ofstream apps_file(apps_string.c_str()); | 552 | ofstream apps_file(apps_string.c_str()); |
552 | 553 | ||
553 | // first of all we output all the startup commands | 554 | // first of all we output all the startup commands |