]> git.lyx.org Git - features.git/commitdiff
doxy, ws and const change
authorLars Gullik Bjønnes <larsbj@gullik.org>
Mon, 11 Mar 2002 22:58:05 +0000 (22:58 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Mon, 11 Mar 2002 22:58:05 +0000 (22:58 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3718 a592a061-630c-0410-9148-cb99ea01b6c8

src/graphics/ChangeLog
src/graphics/GraphicsCacheItem.C
src/graphics/GraphicsCacheItem.h
src/graphics/GraphicsConverter.C
src/graphics/GraphicsConverter.h

index 3c66773704056153952f722b85c1a0047e8005d0..199c24fb371cd20efd19c129d5e28d0bec9cde9c 100644 (file)
@@ -1,3 +1,11 @@
+2002-03-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
+
+       * GraphicsConverter.[Ch] (converted): make first arg const ref.
+
+       * GraphicsCacheItem.h: doxy change
+
+       * GraphicsCacheItem.C: ws change
+
 2002-03-05  Angus Leeming  <a.leeming@ic.ac.uk>
 
        * Makefile.am: if there is no image loading class leveraging the power
index 19fdc7bdccbcdc7c40978489eaf335bc77b0d1ae..c9e1d6ab6642666755474e6d2b65de8122221a47 100644 (file)
@@ -33,6 +33,7 @@ extern BufferView * current_view;
 
 using std::endl;
 
+
 namespace grfx {
 
 GCacheItem::GCacheItem(InsetGraphics const & inset, GParams const & params)
index 9d1e0e12d5fb1045ae371c833612aab1deaee66d..7952f7190dfdf8c2a3d74d42f27da67eb8de35cb 100644 (file)
@@ -184,6 +184,7 @@ private:
 };
 
 
+///
 class ModifiedItem {
 public:
        ///
index ea028a7c54fad60adabcd19daca880fddfb53981..ca347ade672881f212396323b483e4604541b8c6 100644 (file)
@@ -272,7 +272,8 @@ ConvProcess::ConvProcess(string const & script_file,
 }
 
 
-void ConvProcess::converted(string /* cmd */, pid_t /* pid */, int retval)
+void ConvProcess::converted(string const &/* cmd */,
+                           pid_t /* pid */, int retval)
 {
        // Clean-up behind ourselves
        lyx::unlink(script_file_);
index 51bac226e343b0660a24c1a6a9d046383fcc0dd4..5ceeb27d7af14fcc74f28656f84031bc9072d509 100644 (file)
@@ -107,7 +107,7 @@ struct ConvProcess : public SigC::Object
         *  Cleans-up the temporary files, emits the on_finish signal and
         *  removes the ConvProcess from the list of all processes.
         */
-       void converted(string cmd, pid_t pid, int retval);
+       void converted(string const & cmd, pid_t pid, int retval);
 
        ///
        string script_file_;