diff options
author | Jaromir Wysoglad <jaromirwysoglad@gmail.com> | 2019-03-27 23:44:38 +0100 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2019-03-29 07:36:43 +0100 |
commit | 92ce72a4731ad468f5928efd9da7fe66bfdb08ea (patch) | |
tree | c87cf56212eab2d47e192a32afba4eecd44b5668 /wizards | |
parent | 912742333b67c08f7d65c200efabd5fab00b907f (diff) |
tdf#108523 Removed @author annotations
Change-Id: I5905dd94843595b229046c0b4a0f16181c16fd9e
Reviewed-on: https://gerrit.libreoffice.org/69869
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'wizards')
6 files changed, 0 insertions, 6 deletions
diff --git a/wizards/com/sun/star/wizards/agenda/TopicsControl.py b/wizards/com/sun/star/wizards/agenda/TopicsControl.py index be49d5d022e5..68b157020619 100644 --- a/wizards/com/sun/star/wizards/agenda/TopicsControl.py +++ b/wizards/com/sun/star/wizards/agenda/TopicsControl.py @@ -27,7 +27,6 @@ from com.sun.star.awt.Key import DOWN, UP, TAB from com.sun.star.awt.KeyModifier import SHIFT, MOD1 ''' -@author rpiterman This class implements the UI functionality of the topics scroller control. <br/> During development, there has been a few changes which were not *fully* done diff --git a/wizards/com/sun/star/wizards/common/Properties.py b/wizards/com/sun/star/wizards/common/Properties.py index a6dd8c878af4..974856af6a9b 100644 --- a/wizards/com/sun/star/wizards/common/Properties.py +++ b/wizards/com/sun/star/wizards/common/Properties.py @@ -23,7 +23,6 @@ To make a use of this class, instantiate it, and call the put(propName,propValue) method. caution: propName should always be a String. When finished, call the getProperties() method to get an array of the set properties. -@author rp ''' class Properties(dict): diff --git a/wizards/com/sun/star/wizards/ui/DocumentPreview.py b/wizards/com/sun/star/wizards/ui/DocumentPreview.py index 6b22d07a8739..280fac6dff4e 100644 --- a/wizards/com/sun/star/wizards/ui/DocumentPreview.py +++ b/wizards/com/sun/star/wizards/ui/DocumentPreview.py @@ -25,7 +25,6 @@ from com.sun.star.awt.VclWindowPeerAttribute import CLIPCHILDREN from com.sun.star.awt.WindowAttribute import SHOW ''' -@author rpiterman To change the template for this generated type comment go to Window>Preferences>Java>Code Generation>Code and Comments ''' diff --git a/wizards/com/sun/star/wizards/ui/PeerConfig.py b/wizards/com/sun/star/wizards/ui/PeerConfig.py index ee54a77903e8..1383b283a6a0 100644 --- a/wizards/com/sun/star/wizards/ui/PeerConfig.py +++ b/wizards/com/sun/star/wizards/ui/PeerConfig.py @@ -20,7 +20,6 @@ import traceback from .event.CommonListener import WindowListenerProcAdapter ''' -@author rpiterman To change the template for this generated type comment go to Window>Preferences>Java>Code Generation>Code and Comments ''' diff --git a/wizards/com/sun/star/wizards/ui/event/DataAware.py b/wizards/com/sun/star/wizards/ui/event/DataAware.py index d6e5262d8849..24dbe9466aad 100644 --- a/wizards/com/sun/star/wizards/ui/event/DataAware.py +++ b/wizards/com/sun/star/wizards/ui/event/DataAware.py @@ -24,7 +24,6 @@ from com.sun.star.util import Time from datetime import datetime ''' -@author rpiterman DataAware objects are used to live-synchronize UI and DataModel/DataObject. It is used as listener on UI events, to keep the DataObject up to date. This class, as a base abstract class, sets a frame of functionality, diff --git a/wizards/com/sun/star/wizards/ui/event/UnoDataAware.py b/wizards/com/sun/star/wizards/ui/event/UnoDataAware.py index fbeba1178f8a..945c2cef238f 100644 --- a/wizards/com/sun/star/wizards/ui/event/UnoDataAware.py +++ b/wizards/com/sun/star/wizards/ui/event/UnoDataAware.py @@ -21,7 +21,6 @@ from .DataAware import DataAware, datetime, Date, Time from ...common.PropertyNames import PropertyNames ''' -@author rpiterman This class supports simple cases where a UI control can be directly synchronized with a data property. Such controls are: the different text controls |