Files
libreoffice/extensions
Noel Grandin e2080e70fe new compilerplugin returnbyref
Find places where we are returning a pointer to something, where we can
be returning a reference.
e.g.
   class A {
     struct X x;
     public X* getX() { return &x; }
   }
which can be:
     public X& getX() { return x; }

Change-Id: I796fd23fd36a18aedf6e36bc28f8fab4f518c6c7
2014-06-24 11:34:21 +02:00
..
2014-06-24 11:34:21 +02:00
2014-06-06 19:16:40 +00:00
2014-04-28 23:35:42 +09:00
2014-04-28 23:35:42 +09:00
2014-04-28 23:35:42 +09:00
2014-04-28 23:35:42 +09:00
2014-04-28 23:35:42 +09:00
2014-04-28 23:35:42 +09:00
2014-04-28 23:35:42 +09:00
2014-04-28 23:35:42 +09:00
2014-04-28 23:35:42 +09:00
2014-04-28 23:35:42 +09:00
2014-06-12 12:53:44 +00:00

Browser plugin, activex control, scanner bits.  Online update.

== Application online update checking ==

When we start LO, first InitUpdateCheckJobThread is created, via
UpdateCheckJob::execute() (from extensions/source/update/check/updatecheckjob.cxx),
as a reaction to a "onFirstVisibleTask" event. It waits 25 seconds (so that it
does not interfere with the startup itself), and then calls
UpdateCheck::initialize() (from extensions/source/update/check/updatecheck.cxx).

This creates one more thread, UpdateCheckThread, that regularly checks whether
we have reached the time when we should ask for the update.  If yes, asks for
that, and shows the download button in the menu (if the new update is
available).