|
From: Frederic D. <de...@us...> - 2004-06-01 11:27:57
|
Update of /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/diapre In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23809/src/org/fudaa/fudaa/diapre Modified Files: DiapreImplementation.java Log Message: Index: DiapreImplementation.java =================================================================== RCS file: /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/diapre/DiapreImplementation.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** DiapreImplementation.java 5 May 2004 12:42:42 -0000 1.9 --- DiapreImplementation.java 1 Jun 2004 11:27:47 -0000 1.10 *************** *** 89,93 **** static private boolean ouvert = false; protected BuAssistant assistant_; - protected BuPreferencesFrame preferences_; protected EbliFillePrevisualisation previsuFille_; protected BuHelpFrame aide_; --- 89,92 ---- *************** *** 143,147 **** fp_ = null; projet_ = null; - preferences_ = null; aide_ = null; try { --- 142,145 ---- *************** *** 483,488 **** /* Création ou affichage de la fentre pour les préférences. */ ! protected void buildPreferences() { ! preferences_ = new BuPreferencesFrame(); preferences_.addTab(new BuUserPreferencesPanel(this)); preferences_.addTab(new BuDesktopPreferencesPanel(this)); --- 481,486 ---- /* Création ou affichage de la fentre pour les préférences. */ ! protected BuPreferencesEditorPanel buildPreferences() { ! BuPreferencesEditorPanel preferences_ = new BuPreferencesEditorPanel(); preferences_.addTab(new BuUserPreferencesPanel(this)); preferences_.addTab(new BuDesktopPreferencesPanel(this)); *************** *** 492,495 **** --- 490,494 ---- preferences_.addTab(new FudaaAidePreferencesPanel(this, DiaprePreferences.DIAPRE)); preferences_.addTab(new EbliMiseEnPagePreferencesPanel()); + return preferences_; } |