Commit Graph

16 Commits

Author SHA1 Message Date
Noel Grandin
71b809959b remove unnecessary use of void in function declarations
ie.
    void f(void);
becomes
    void f();

I used the following command to make the changes:

  git grep -lP '\(\s*void\s*\)' -- *.cxx \
    | xargs perl -pi -w -e 's/(\w+)\s*\(\s*void\s*\)/$1\(\)/g;'

and ran it for both .cxx and .hxx files.

Change-Id: I314a1b56e9c14d10726e32841736b0ad5eef8ddd
2015-04-15 11:47:12 +02:00
Caolán McNamara
1a3c99f2c3 callcatcher: update unusedcode
mostly changed due to loplugin:constantfunction

Change-Id: Ib677c78db256f8032a99b3f02a3e363fee68ebcc
2015-04-04 17:13:21 +01:00
Thomas Arnhold
72a416bef8 fixincludeguards.sh: slideshow
Change-Id: Id966e572afb403fd652a7a9b3936e1cfae4581b9
2014-04-19 11:10:12 +02:00
Stephan Bergmann
a49b453ad3 Clean up function declarations and some unused functions
Change-Id: Ia821ca4d03a467620b3ea6ea2520f0d177a5724d
2014-04-14 18:10:00 +02:00
Michael Meeks
535e83550e re-base on ALv2 code. Includes:
Avoid some uses of non portable #!/bin/bash in shell scripts.
    Patch contributed by Pedro Giffuni
    http://svn.apache.org/viewvc?view=revision&revision=1235297
    remove redundant namespace, patch contributed Mathias Bauer
    http://svn.apache.org/viewvc?view=revision&revision=1162610
    removal of OS/2 port changes, and preferring our similiar
    tools/inc/tools/solar.h DLLPOSTFIX cleanup.
    i118595 - Removal of the use of getopt() from rscdep.
    Patch contributed by Andre Fische
    http://svn.apache.org/viewvc?view=revision&revision=1202270
2012-07-11 18:12:35 +01:00
Joseph Powers
41449a86c4 unusedcode.easy: slideshow::internal cleanup 2011-08-31 07:37:32 -07:00
Takeshi Abe
530bc608d0 Replace all occured, occurance etc. 2010-12-05 19:03:58 +00:00
Caolán McNamara
55ae7b1537 add modelines to .hxx files as well 2010-10-28 15:50:10 +01:00
Jens-Heiner Rechtien
9e19ff00c7 changefileheader2: #i109125#: change source file copyright notice from Sun Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision) 2010-02-12 15:01:35 +01:00
Andre Fischer
268c5a727b #i48179# Introduced EffectRewinder class that replays main sequence effects on current or previous slide. 2009-03-04 13:41:44 +00:00
Rüdiger Timm
a6f763a9bf INTEGRATION: CWS changefileheader (1.6.46); FILE MERGED
2008/03/31 14:00:32 rt 1.6.46.1: #i87441# Change license header to LPGL v3.
2008-04-11 00:35:13 +00:00
Oliver Bolte
fc54883d1c INTEGRATION: CWS presfixes12 (1.5.12); FILE MERGED
2007/01/29 14:02:31 thb 1.5.12.1: Issue number: #i37778#

Larger slideshow refactoring. Wrote design and coding style manifest,
and adapted the code to actually conform to this. In detail:
 - cleaned up ownership/disposable/weak_ptr story. removed hacks and
   explicit Disposable implementations, where workaround were available
 - removed object mutices, where superfluous
 - reworked EventMultiplexer (using templatized listener class now), added
   more events. EventMultiplexer now serves as a true blackboard
 - reworked directory structure: disjunct parts are now physically separated
   into directories, instantiation happens via factories & abstract interfaces
 - added CursorManager, to make setting mouse cursor less hackish
 - reworked DrawShape, to implement SeparateListener pattern
 - reworked IntrinsicAnimationActivity, to avoid cyclic references
 - modified hyperlink & shape cursor handling to communicate via
   EventMultiplexer
 - renamed & cleaned up files (presentation.cxx now named slideshowimpl.cxx,
   etc.)
 - added first version of the z-order fix to layer/layermanager
 - cleaned up include guards and include syntax
2007-07-17 14:18:24 +00:00
Kurt Zenker
b46b20e41a INTEGRATION: CWS presfixes09 (1.4.16); FILE MERGED
2006/04/24 13:25:38 thb 1.4.16.2: #i53194# Unified include statements (local headers always have double quotes; external headers angle brackets); reverted EventMultiplexer pause events to shared_ptr; removed EventMultiplexer::removeViewHandler(), since the handler is held weakly, anyway.
2006/03/24 18:23:39 thb 1.4.16.1: #i37778# Moved whole slideshow engine from namespace presentation (which conflicts with one of the UNO subnamespaces) to slideshow
2006-12-13 15:06:28 +00:00
Oliver Bolte
14ca845bf2 INTEGRATION: CWS presfixes08 (1.2.36); FILE MERGED
2005/08/08 10:42:35 dbo 1.2.36.2: #i45197# added rewind effect
Issue number:
Submitted by:
Reviewed by:
2005/06/13 08:55:20 dbo 1.2.36.1: #i45197# skip effect event
Issue number:
Submitted by:
Reviewed by:
2005-10-11 07:55:26 +00:00
Rüdiger Timm
429781ce2c INTEGRATION: CWS ooo19126 (1.2.42); FILE MERGED
2005/09/05 17:41:49 rt 1.2.42.1: #i54170# Change license header: remove SISSL
2005-09-07 20:24:33 +00:00
Rüdiger Timm
f10e47be53 INTEGRATION: CWS presentationengine01 (1.1.2); FILE ADDED
2004/11/03 18:41:29 thb 1.1.2.7: #i36221# Now honoring interactive sequences (apart from the main animation sequence), which enables trigger effects to work. Had to tweak quite some more, to get click handling, and mouse cursor changes to work with that (now, a registered shape click event at the UserEventQueue automatically sets the shape cursor to REFHAND, as long as events are pending for that shape)
2004/10/22 16:36:49 thb 1.1.2.6: #107736# Added AdvanceOnClick and ImageAnimationsAllowed properties
2004/10/21 23:24:39 thb 1.1.2.5: #i35043# Added Event and EventTrigger functionality for after effect (but also for most of the other EventTrigger types); faked a DimColor implementation (currently based on fillcolor); refactored a little bit
2004/09/06 13:50:03 thb 1.1.2.4: #110496# Reworked event handling, we now have the EventMultiplexer, which is the only instance actually registering a listener at the view. Added user painting on the slideshow canvas
2004/08/31 17:05:23 thb 1.1.2.3: #110496# Added automatic slide transition support, added user interaction to activate slide transitions
2004/08/31 01:12:35 thb 1.1.2.2: #110496# Implemented shape broadcasting, added CurrentPage property when calling the UnoGraphicExporter for shape metafiles
2004/08/05 20:00:01 thb 1.1.2.1: #110496# Moved from source/engine
2004-11-26 18:23:16 +00:00