From: Lars Gullik Bjønnes Date: Mon, 11 Mar 2002 22:58:05 +0000 (+0000) Subject: doxy, ws and const change X-Git-Tag: 1.6.10~19680 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=b49f5ac419b81c6dbbc3e9d802b5a7bc9bbed71d;p=features.git doxy, ws and const change git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3718 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/graphics/ChangeLog b/src/graphics/ChangeLog index 3c66773704..199c24fb37 100644 --- a/src/graphics/ChangeLog +++ b/src/graphics/ChangeLog @@ -1,3 +1,11 @@ +2002-03-11 Lars Gullik Bjønnes + + * GraphicsConverter.[Ch] (converted): make first arg const ref. + + * GraphicsCacheItem.h: doxy change + + * GraphicsCacheItem.C: ws change + 2002-03-05 Angus Leeming * Makefile.am: if there is no image loading class leveraging the power diff --git a/src/graphics/GraphicsCacheItem.C b/src/graphics/GraphicsCacheItem.C index 19fdc7bdcc..c9e1d6ab66 100644 --- a/src/graphics/GraphicsCacheItem.C +++ b/src/graphics/GraphicsCacheItem.C @@ -33,6 +33,7 @@ extern BufferView * current_view; using std::endl; + namespace grfx { GCacheItem::GCacheItem(InsetGraphics const & inset, GParams const & params) diff --git a/src/graphics/GraphicsCacheItem.h b/src/graphics/GraphicsCacheItem.h index 9d1e0e12d5..7952f7190d 100644 --- a/src/graphics/GraphicsCacheItem.h +++ b/src/graphics/GraphicsCacheItem.h @@ -184,6 +184,7 @@ private: }; +/// class ModifiedItem { public: /// diff --git a/src/graphics/GraphicsConverter.C b/src/graphics/GraphicsConverter.C index ea028a7c54..ca347ade67 100644 --- a/src/graphics/GraphicsConverter.C +++ b/src/graphics/GraphicsConverter.C @@ -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_); diff --git a/src/graphics/GraphicsConverter.h b/src/graphics/GraphicsConverter.h index 51bac226e3..5ceeb27d7a 100644 --- a/src/graphics/GraphicsConverter.h +++ b/src/graphics/GraphicsConverter.h @@ -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_;