summaryrefslogtreecommitdiff
path: root/src/Remember.cc
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2007-12-23 21:28:08 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2007-12-23 21:28:08 (GMT)
commit1b48b749b9a376c883ff4cc2ca3e807ac85cf21f (patch)
tree6ca960b0751df35295791728721bf12043c2c6c5 /src/Remember.cc
parent0676161673d4347197c9d20fe3d613527633e597 (diff)
downloadfluxbox_lack-1b48b749b9a376c883ff4cc2ca3e807ac85cf21f.zip
fluxbox_lack-1b48b749b9a376c883ff4cc2ca3e807ac85cf21f.tar.bz2
make FbWinFrame aware of the decoration state
Diffstat (limited to 'src/Remember.cc')
-rw-r--r--src/Remember.cc22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/Remember.cc b/src/Remember.cc
index 2090008..a48f399 100644
--- a/src/Remember.cc
+++ b/src/Remember.cc
@@ -814,25 +814,25 @@ void Remember::save() {
814 apps_file << " [Deco]\t{NONE}" << endl; 814 apps_file << " [Deco]\t{NONE}" << endl;
815 break; 815 break;
816 case (0xffffffff): 816 case (0xffffffff):
817 case (FluxboxWindow::DECORM_LAST - 1): 817 case (FbWinFrame::DECORM_LAST - 1):
818 apps_file << " [Deco]\t{NORMAL}" << endl; 818 apps_file << " [Deco]\t{NORMAL}" << endl;
819 break; 819 break;
820 case (FluxboxWindow::DECORM_TITLEBAR 820 case (FbWinFrame::DECORM_TITLEBAR
821 | FluxboxWindow::DECORM_ICONIFY 821 | FbWinFrame::DECORM_ICONIFY
822 | FluxboxWindow::DECORM_MENU): 822 | FbWinFrame::DECORM_MENU):
823 apps_file << " [Deco]\t{TOOL}" << endl; 823 apps_file << " [Deco]\t{TOOL}" << endl;
824 break; 824 break;
825 case (FluxboxWindow::DECORM_TITLEBAR 825 case (FbWinFrame::DECORM_TITLEBAR
826 | FluxboxWindow::DECORM_MENU): 826 | FbWinFrame::DECORM_MENU):
827 apps_file << " [Deco]\t{TINY}" << endl; 827 apps_file << " [Deco]\t{TINY}" << endl;
828 break; 828 break;
829 case (FluxboxWindow::DECORM_BORDER 829 case (FbWinFrame::DECORM_BORDER
830 | FluxboxWindow::DECORM_MENU): 830 | FbWinFrame::DECORM_MENU):
831 apps_file << " [Deco]\t{BORDER}" << endl; 831 apps_file << " [Deco]\t{BORDER}" << endl;
832 break; 832 break;
833 case (FluxboxWindow::DECORM_BORDER 833 case (FbWinFrame::DECORM_BORDER
834 | FluxboxWindow::DECORM_MENU 834 | FbWinFrame::DECORM_MENU
835 | FluxboxWindow::DECORM_TAB): 835 | FbWinFrame::DECORM_TAB):
836 apps_file << " [Deco]\t{TAB}" << endl; 836 apps_file << " [Deco]\t{TAB}" << endl;
837 break; 837 break;
838 default: 838 default: