diff options
author | Frank Schönheit <fs@openoffice.org> | 2001-03-20 14:45:51 +0000 |
---|---|---|
committer | Frank Schönheit <fs@openoffice.org> | 2001-03-20 14:45:51 +0000 |
commit | 25143b43aa8d172ad47a86f9f2395894e39f6716 (patch) | |
tree | f970cf711b682c461a18f2f110cb4176d0546b49 /extensions | |
parent | c4008413ccfe39c8928aafad59a4e9cd1ff76608 (diff) |
#85200# added missing help ids
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/dbpilots/gridwizard.cxx | 15 | ||||
-rw-r--r-- | extensions/source/dbpilots/groupboxwiz.cxx | 15 | ||||
-rw-r--r-- | extensions/source/dbpilots/listcombowizard.cxx | 15 |
3 files changed, 39 insertions, 6 deletions
diff --git a/extensions/source/dbpilots/gridwizard.cxx b/extensions/source/dbpilots/gridwizard.cxx index 8d1f41c77..1687bc383 100644 --- a/extensions/source/dbpilots/gridwizard.cxx +++ b/extensions/source/dbpilots/gridwizard.cxx @@ -2,9 +2,9 @@ * * $RCSfile: gridwizard.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: fs $ $Date: 2001-03-05 14:52:24 $ + * last change: $Author: fs $ $Date: 2001-03-20 15:45:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -87,6 +87,9 @@ #ifndef _EXTENSIONS_DBP_DBPTOOLS_HXX_ #include "dbptools.hxx" #endif +#ifndef __EXTENSIONS_INC_EXTENSIO_HRC__ +#include "extensio.hrc" +#endif #define GW_STATE_DATASOURCE_SELECTION 0 #define GW_STATE_FIELDSELECTION 1 @@ -115,6 +118,11 @@ namespace dbp { initControlSettings(&m_aSettings); + m_pPrevPage->SetHelpId(HID_GRIDWIZARD_PREVIOUS); + m_pNextPage->SetHelpId(HID_GRIDWIZARD_NEXT); + m_pCancel->SetHelpId(HID_GRIDWIZARD_CANCEL); + m_pFinish->SetHelpId(HID_GRIDWIZARD_FINISH); + // if we do not need the data source selection page ... if (!needDatasourceSelection()) { // ... skip it! @@ -515,6 +523,9 @@ namespace dbp /************************************************************************* * history: * $Log: not supported by cvs2svn $ + * Revision 1.1 2001/03/05 14:52:24 fs + * initial checkin - grid auto pilot implementations + * * * Revision 1.0 05.03.01 09:24:22 fs ************************************************************************/ diff --git a/extensions/source/dbpilots/groupboxwiz.cxx b/extensions/source/dbpilots/groupboxwiz.cxx index f85a2d3a0..c7f245296 100644 --- a/extensions/source/dbpilots/groupboxwiz.cxx +++ b/extensions/source/dbpilots/groupboxwiz.cxx @@ -2,9 +2,9 @@ * * $RCSfile: groupboxwiz.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: fs $ $Date: 2001-03-06 15:09:00 $ + * last change: $Author: fs $ $Date: 2001-03-20 15:45:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -77,6 +77,9 @@ #ifndef _EXTENSIONS_DBP_OPTIONGROUPLAYOUTER_HXX_ #include "optiongrouplayouter.hxx" #endif +#ifndef __EXTENSIONS_INC_EXTENSIO_HRC__ +#include "extensio.hrc" +#endif //#define GBW_STATE_DATASELECTION 0 @@ -108,6 +111,11 @@ namespace dbp ,m_bVisitedDB(sal_False) { initControlSettings(&m_aSettings); + + m_pPrevPage->SetHelpId(HID_GROUPWIZARD_PREVIOUS); + m_pNextPage->SetHelpId(HID_GROUPWIZARD_NEXT); + m_pCancel->SetHelpId(HID_GROUPWIZARD_CANCEL); + m_pFinish->SetHelpId(HID_GROUPWIZARD_FINISH); } //--------------------------------------------------------------------- @@ -597,6 +605,9 @@ namespace dbp /************************************************************************* * history: * $Log: not supported by cvs2svn $ + * Revision 1.7 2001/03/06 15:09:00 fs + * adjust the focus on the RadioSelectionPage + * * Revision 1.6 2001/03/06 09:50:06 fs * #84643# clear aValues * diff --git a/extensions/source/dbpilots/listcombowizard.cxx b/extensions/source/dbpilots/listcombowizard.cxx index 69955bf7c..79613e1c5 100644 --- a/extensions/source/dbpilots/listcombowizard.cxx +++ b/extensions/source/dbpilots/listcombowizard.cxx @@ -2,9 +2,9 @@ * * $RCSfile: listcombowizard.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: fs $ $Date: 2001-03-05 14:53:13 $ + * last change: $Author: fs $ $Date: 2001-03-20 15:45:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -86,6 +86,9 @@ #ifndef _CONNECTIVITY_DBTOOLS_HXX_ #include <connectivity/dbtools.hxx> #endif +#ifndef __EXTENSIONS_INC_EXTENSIO_HRC__ +#include "extensio.hrc" +#endif //......................................................................... namespace dbp @@ -114,6 +117,11 @@ namespace dbp { initControlSettings(&m_aSettings); + m_pPrevPage->SetHelpId(HID_LISTWIZARD_PREVIOUS); + m_pNextPage->SetHelpId(HID_LISTWIZARD_NEXT); + m_pCancel->SetHelpId(HID_LISTWIZARD_CANCEL); + m_pFinish->SetHelpId(HID_LISTWIZARD_FINISH); + // if we do not need the data source selection page ... if (!needDatasourceSelection()) { // ... skip it! @@ -597,6 +605,9 @@ namespace dbp /************************************************************************* * history: * $Log: not supported by cvs2svn $ + * Revision 1.3 2001/03/05 14:53:13 fs + * finished the grid control wizard + * * Revision 1.2 2001/02/28 09:18:30 fs * finalized the list/combo wizard * |