small things

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2287 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2001-07-19 15:32:13 +00:00
parent 50b65ca806
commit c4b2613c6b
6 changed files with 15 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2001-07-19 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* configure.in: remove extra action for AC_OUTPUT (not needed
anymore with gettext 0.10.38)
2001-07-05 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* INSTALL: update various requirements

View File

@ -313,7 +313,7 @@ AC_OUTPUT([Makefile \
src/frontends/xforms/Makefile \
src/frontends/qt2/Makefile \
src/frontends/gnome/Makefile \
], [sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile])
])
cat <<EOF

View File

@ -13,7 +13,7 @@
* bind/cua.bind:
* ui/default.ui: use inset-toggle instead of open-stuff
2001-07-12 Kayvan A. Sylvan <kayvan@camel.internal.sylvan.com>
2001-07-12 Kayvan A. Sylvan <kayvan@sylvan.com>
* layouts/literate-scrap.inc: Added PassThru tag

View File

@ -127,7 +127,7 @@
* sp_form.[Ch]: removed
* spellchecker.[Ch]: removed
2001-07-12 Kayvan A. Sylvan <kayvan@camel.internal.sylvan.com>
2001-07-12 Kayvan A. Sylvan <kayvan@sylvan.com>
* paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
is set.
@ -913,7 +913,7 @@
* bufferlist.C (emergencyWrite): fix assert() call
2001-05-04 Kayvan A. Sylvan <kayvan@camel.internal.sylvan.com>
2001-05-04 Kayvan A. Sylvan <kayvan@sylvan.com>
* text.C (InsertChar): Added trivial patch to only send the "you
can not do multiple spaces this way" message once during a

View File

@ -1,3 +1,8 @@
2001-07-19 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* biblio.C (getInfo): add a .c_str() to handle the usual
stringstream pain.
2001-07-19 Angus Leeming <a.leeming@ic.ac.uk>
* ControlCitation.[Ch]: changes associated with adding natbib support.

View File

@ -281,7 +281,7 @@ string const getInfo(InfoMap const & map, string const & key)
if (result.str().empty()) // not a BibTeX record
result << it->second;
return result.str();
return result.str().c_str();
}