Hi,
I have submitted a patch for review:
https://gerrit.libreoffice.org/2515
To pull it, you can do:
git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/15/2515/1
translated German comments
Change-Id: If89452824776c2bd653ca0728cc7e6adf4050e4b
---
M dbaccess/source/ui/tabledesign/TableUndo.cxx
1 file changed, 19 insertions(+), 19 deletions(-)
diff --git a/dbaccess/source/ui/tabledesign/TableUndo.cxx
b/dbaccess/source/ui/tabledesign/TableUndo.cxx
index 75a8879..68d97e3 100644
--- a/dbaccess/source/ui/tabledesign/TableUndo.cxx
+++ b/dbaccess/source/ui/tabledesign/TableUndo.cxx
@@ -63,7 +63,7 @@
m_pTabDgnCtrl->m_nCurUndoActId--;
//////////////////////////////////////////////////////////////////////
- // Wenn erstes Undo zurueckgenommen wurde, ist Doc nicht modifiziert worden
+ // doc has not been modified if first undo was reverted
if( m_pTabDgnCtrl->m_nCurUndoActId == 0 )
{
m_pTabDgnCtrl->GetView()->getController().setModified(sal_False);
@@ -77,7 +77,7 @@
m_pTabDgnCtrl->m_nCurUndoActId++;
//////////////////////////////////////////////////////////////////////
- // Wenn Redo fuer erste Undo-Action, muss Modified-Flag wieder gesetzt werden
+ // restore Modifed-flag after Redo of first Undo-action
if( m_pTabDgnCtrl->m_nCurUndoActId > 0 )
{
m_pTabDgnCtrl->GetView()->getController().setModified(sal_True);
@@ -95,7 +95,7 @@
{
DBG_CTOR(OTableDesignCellUndoAct,NULL);
//////////////////////////////////////////////////////////////////////
- // Text an der Position (m_nRow, m_nCol) auslesen
+ // read text at position (m_nRow, m_nCol)
m_sOldText = m_pTabDgnCtrl->GetCellData( m_nRow, m_nCol );
}
@@ -109,12 +109,12 @@
void OTableDesignCellUndoAct::Undo()
{
//////////////////////////////////////////////////////////////////////
- // Neuen Text der alten Zelle speichern und alten wieder einsetzen
+ // store text at old line and restore the old one
m_pTabDgnCtrl->ActivateCell( m_nRow, m_nCol );
m_sNewText = m_pTabDgnCtrl->GetCellData( m_nRow, m_nCol );
m_pTabDgnCtrl->SetCellData( m_nRow, m_nCol, m_sOldText );
//////////////////////////////////////////////////////////////////////
- // Wenn erstes Undo zurueckgenommen wurde, ist Zelle nicht mehr modifiziert
+ // line has not been modified if the first Undo was reverted
if (m_pTabDgnCtrl->GetCurUndoActId() == 1)
{
CellControllerRef xController = m_pTabDgnCtrl->Controller();
@@ -131,7 +131,7 @@
void OTableDesignCellUndoAct::Redo()
{
//////////////////////////////////////////////////////////////////////
- // Neuen Text wieder einseten
+ // restore new text
m_pTabDgnCtrl->ActivateCell( m_nRow, m_nCol );
m_pTabDgnCtrl->SetCellData( m_nRow, m_nCol, m_sNewText );
@@ -178,7 +178,7 @@
void OTableEditorTypeSelUndoAct::Undo()
{
//////////////////////////////////////////////////////////////////////
- // Typ zuruecksetzen
+ // restore type
OFieldDescription* pFieldDesc = pTabEdCtrl->GetFieldDescr(m_nRow);
if(pFieldDesc)
m_pNewType = pFieldDesc->getTypeInfo();
@@ -194,7 +194,7 @@
void OTableEditorTypeSelUndoAct::Redo()
{
//////////////////////////////////////////////////////////////////////
- // Neuen Typ
+ // new type
pTabEdCtrl->GoToRowColumnId( m_nRow ,m_nCol);
pTabEdCtrl->SetCellData(m_nRow,m_nCol,m_pNewType);
@@ -210,7 +210,7 @@
{
DBG_CTOR(OTableEditorDelUndoAct,NULL);
//////////////////////////////////////////////////////////////////////
- // DeletedRowList fuellen
+ // fill DeletedRowList
::std::vector< ::boost::shared_ptr<OTableRow> >* pOriginalRows = pOwner->GetRowList();
long nIndex = pOwner->FirstSelectedRow();
::boost::shared_ptr<OTableRow> pOriginalRow;
@@ -237,7 +237,7 @@
void OTableEditorDelUndoAct::Undo()
{
//////////////////////////////////////////////////////////////////////
- // Geloeschte Zeilen wieder einfuegen
+ // Insert the deleted line
sal_uLong nPos;
::std::vector< ::boost::shared_ptr<OTableRow> >::iterator aIter = m_aDeletedRows.begin();
::std::vector< ::boost::shared_ptr<OTableRow> >::iterator aEnd = m_aDeletedRows.end();
@@ -261,7 +261,7 @@
void OTableEditorDelUndoAct::Redo()
{
//////////////////////////////////////////////////////////////////////
- // Zeilen wieder loeschen
+ // delete line again
sal_uLong nPos;
::std::vector< ::boost::shared_ptr<OTableRow> >::iterator aIter = m_aDeletedRows.begin();
::std::vector< ::boost::shared_ptr<OTableRow> >::iterator aEnd = m_aDeletedRows.end();
@@ -304,7 +304,7 @@
void OTableEditorInsUndoAct::Undo()
{
//////////////////////////////////////////////////////////////////////
- // Eingefuegte Zeilen wieder loeschen
+ // delete lines again
::std::vector< ::boost::shared_ptr<OTableRow> >* pOriginalRows = pTabEdCtrl->GetRowList();
for( long i=(m_nInsPos+m_vInsertedRows.size()-1); i>(m_nInsPos-1); i-- )
{
@@ -321,7 +321,7 @@
void OTableEditorInsUndoAct::Redo()
{
//////////////////////////////////////////////////////////////////////
- // Zeilen wieder einfuegen
+ // insert lines again
long nInsertRow = m_nInsPos;
::boost::shared_ptr<OTableRow> pRow;
::std::vector< ::boost::shared_ptr<OTableRow> >::iterator aIter = m_vInsertedRows.begin();
@@ -362,7 +362,7 @@
void OTableEditorInsNewUndoAct::Undo()
{
//////////////////////////////////////////////////////////////////////
- // Eingefuegte Zeilen wieder loeschen
+ // delete inserted lines
::std::vector< ::boost::shared_ptr<OTableRow> >* pOriginalRows = pTabEdCtrl->GetRowList();
for( long i=(m_nInsPos+m_nInsRows-1); i>(m_nInsPos-1); i-- )
@@ -380,7 +380,7 @@
void OTableEditorInsNewUndoAct::Redo()
{
//////////////////////////////////////////////////////////////////////
- // Zeilen wieder einfuegen
+ // insert lines again
::std::vector< ::boost::shared_ptr<OTableRow> >* pRowList = pTabEdCtrl->GetRowList();
for( long i=m_nInsPos; i<(m_nInsPos+m_nInsRows); i++ )
@@ -421,7 +421,7 @@
long nIndex;
//////////////////////////////////////////////////////////////////////
- // Die eingefuegten Keys loeschen
+ // delete inserted keys
for( nIndex = m_aInsKeys.FirstSelected(); nIndex != (long)SFX_ENDOFSELECTION;
nIndex=m_aInsKeys.NextSelected() )
{
OSL_ENSURE(nIndex <= static_cast<long>(pRowList->size()),"Index for undo isn't valid!");
@@ -430,7 +430,7 @@
}
//////////////////////////////////////////////////////////////////////
- // Die geloeschten Keys herstellen
+ // restore deleted keys
for( nIndex = m_aDelKeys.FirstSelected(); nIndex != (long)SFX_ENDOFSELECTION;
nIndex=m_aDelKeys.NextSelected() )
{
OSL_ENSURE(nIndex <= static_cast<long>(pRowList->size()),"Index for undo isn't valid!");
@@ -449,12 +449,12 @@
long nIndex;
//////////////////////////////////////////////////////////////////////
- // Die geloeschten Keys loeschen
+ // delete the deleted keys
for( nIndex = m_aDelKeys.FirstSelected(); nIndex != (long)SFX_ENDOFSELECTION;
nIndex=m_aDelKeys.NextSelected() )
(*pRowList)[nIndex]->SetPrimaryKey( sal_False );
//////////////////////////////////////////////////////////////////////
- // Die eingefuegten Keys herstellen
+ // restore the inserted keys
for( nIndex = m_aInsKeys.FirstSelected(); nIndex != (long)SFX_ENDOFSELECTION;
nIndex=m_aInsKeys.NextSelected() )
(*pRowList)[nIndex]->SetPrimaryKey( sal_True );
--
To view, visit https://gerrit.libreoffice.org/2515
To unsubscribe, visit https://gerrit.libreoffice.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: If89452824776c2bd653ca0728cc7e6adf4050e4b
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Luc Castermans <luc.castermans@gmail.com>
Context
- [PATCH] translated German comments · Luc Castermans (via Code Review)
Privacy Policy |
Impressum (Legal Info) |
Copyright information: Unless otherwise specified, all text and images
on this website are licensed under the
Creative Commons Attribution-Share Alike 3.0 License.
This does not include the source code of LibreOffice, which is
licensed under the Mozilla Public License (
MPLv2).
"LibreOffice" and "The Document Foundation" are
registered trademarks of their corresponding registered owners or are
in actual use as trademarks in one or more countries. Their respective
logos and icons are also subject to international copyright laws. Use
thereof is explained in our
trademark policy.