#84511# change message

This commit is contained in:
Ocke Janssen 2001-03-01 14:22:17 +00:00
parent 7f4fcc0fff
commit b5d013b91c
3 changed files with 19 additions and 7 deletions

View file

@ -2,9 +2,9 @@
*
* $RCSfile: dbu_resource.hrc,v $
*
* $Revision: 1.27 $
* $Revision: 1.28 $
*
* last change: $Author: oj $ $Date: 2001-02-28 10:10:01 $
* last change: $Author: oj $ $Date: 2001-03-01 15:22:17 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -147,6 +147,7 @@
#define QUERY_CONNECTION_LOST RID_QUERYBOX_START + 2
#define QUERY_BRW_DELETE_QUERY_CONFIRM RID_QUERYBOX_START + 3
#define QUERY_DESIGN_SAVEMODIFIED RID_QUERYBOX_START + 4
#define TABLE_DESIGN_SAVEMODIFIED RID_QUERYBOX_START + 5
//========================================================================
// warning boxes
@ -357,6 +358,9 @@
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
* Revision 1.27 2001/02/28 10:10:01 oj
* changes for the new relation design
*
* Revision 1.26 2001/02/23 15:02:06 oj
* a lot of import export
*

View file

@ -2,9 +2,9 @@
*
* $RCSfile: TableController.cxx,v $
*
* $Revision: 1.6 $
* $Revision: 1.7 $
*
* last change: $Author: oj $ $Date: 2001-03-01 15:16:27 $
* last change: $Author: oj $ $Date: 2001-03-01 15:21:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -592,7 +592,7 @@ sal_Bool SAL_CALL OTableController::suspend(sal_Bool bSuspend) throw( RuntimeExc
{
if(isModified())
{
QueryBox aQry(getView(), ModuleRes(QUERY_DESIGN_SAVEMODIFIED));
QueryBox aQry(getView(), ModuleRes(TABLE_DESIGN_SAVEMODIFIED));
switch (aQry.Execute())
{
case RET_YES:

View file

@ -2,9 +2,9 @@
*
* $RCSfile: table.src,v $
*
* $Revision: 1.3 $
* $Revision: 1.4 $
*
* last change: $Author: fs $ $Date: 2001-03-01 10:36:27 $
* last change: $Author: oj $ $Date: 2001-03-01 15:21:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -1418,6 +1418,14 @@ String STR_STAT_WARNING
Text[ korean ] = "°æ°í!";
Text[ turkish ] = "Uyarý!";
};
QueryBox TABLE_DESIGN_SAVEMODIFIED
{
Buttons = WB_YES_NO_CANCEL ;
DefButton = WB_DEF_YES ;
Message = "Die Tabelle wurde geändert.\nSollen die Änderungen gespeichert werden?" ;
Message [ English ] = "The table has been modified.\nDo you want to save your changes?" ;
Message [ english_us ] = "The table has been changed.\nDo you want to save the changes?" ;
};