[Igarden-commit] Garden/source/Preferences PreferencesWindow.cpp, 1.7, 1.7.2.1
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2006-12-03 02:07:35
|
Update of /cvsroot/igarden/Garden/source/Preferences In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv27806 Modified Files: Tag: Release_branch_v1 PreferencesWindow.cpp Log Message: Add preference panel for document format Index: PreferencesWindow.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/Preferences/PreferencesWindow.cpp,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** PreferencesWindow.cpp 17 May 2006 00:02:22 -0000 1.7 --- PreferencesWindow.cpp 3 Dec 2006 02:07:34 -0000 1.7.2.1 *************** *** 38,41 **** --- 38,42 ---- #include "PrintingPrefsPanel.h" #include "InternetPrefsPanel.h" + #include "DocumentFormatPrefsPanel.h" #include "MyAssert.h" #include "Preferences.h" *************** *** 184,187 **** --- 185,190 ---- about->AddPrefsPanel(dialog, new PrintingPrefsPanel(about->_prefs)); about->AddPrefsPanel(dialog, new InternetPrefsPanel(GlobalTags::_globalPrefs)); + about->AddPrefsPanel(dialog, new DocumentFormatPrefsPanel(about->_prefs)); + about->_prefs->CopyAllFieldsTo(about->_savePrefs); pop = dynamic_cast<XGPopControl*>(dialog->FindViewByID(kPanelSelect)); |