From: Alfredo Braunstein Date: Wed, 14 May 2003 10:59:18 +0000 (+0000) Subject: removed a spurious static_cast X-Git-Tag: 1.6.10~16825 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=7564e75347730a10c8ec7deb8be2fe5f52c21372;p=lyx.git removed a spurious static_cast git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6964 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index 94ab84b5c4..cb2f9e8ecd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,16 +1,20 @@ -2003-05-14 André Pönitz +2003-05-14 Alfredo Braunstein + + * lyx_main.C (init): remove spurious static_cast + +2003-05-14 André Pönitz * BufferView.C: fix format string -2003-05-12 Alfredo Braunstein +2003-05-12 Alfredo Braunstein * BufferView.[Ch] (insertErrors): removed * BufferView.[Ch] (showErrorList): added * buffer.C (runChkTeX): * converter.C (scanLog): call showErrorList instead of inserterrors -2003-05-13 André Pönitz +2003-05-13 André Pönitz * BufferView_pimpl.C: * buffer.C: @@ -30,7 +34,7 @@ * lyxlex_pimpl.C: * text3.C: STRCONV() -2003-05-12 André Pönitz +2003-05-12 André Pönitz * BufferView.C: * BufferView_pimpl.C: @@ -61,7 +65,7 @@ * text3.C: boost::format -> bformat all over the place -2003-05-09 André Pönitz +2003-05-09 André Pönitz * LColor.[Ch]: Pimpl the #include away @@ -117,7 +121,7 @@ * text2.C: don't cast wrap inset to float -2003-05-05 André Pönitz +2003-05-05 André Pönitz * iterator.C: * undo_funcs.C: use getParagraphs() instead of getFirstParagraph() @@ -152,7 +156,7 @@ * text.C: * text3.C: remove explicit cursor hides -2003-05-02 André Pönitz +2003-05-02 André Pönitz * buffer.[Ch]: two instances of Paragraph * -> ParagraphList::iterator diff --git a/src/lyx_main.C b/src/lyx_main.C index 18b69a1629..5f1a44cfc0 100644 --- a/src/lyx_main.C +++ b/src/lyx_main.C @@ -361,7 +361,7 @@ void LyX::init(bool gui) exit(1); } lyxerr << bformat(_("Using built-in default %1$s but expect problems."), - static_cast(LYX_DIR)) << endl; + LYX_DIR) << endl; } else { lyxerr << _("Expect problems.") << endl; }