remove spurious std::

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4698 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-07-18 01:23:12 +00:00
parent 0e94da770a
commit a598ff6bd3
2 changed files with 4 additions and 8 deletions

View File

@ -60,7 +60,7 @@ Image::FormatList QLImage::loadableFormats()
QStrListIterator it(qt_formats);
for (; it.current(); ++it) {
lyxerr[Debug::GRAPHICS] << it.current() << std::endl;
lyxerr[Debug::GRAPHICS] << it.current() << endl;
string ext = lowercase(it.current());
@ -84,7 +84,7 @@ Image::FormatList QLImage::loadableFormats()
lyxerr[Debug::GRAPHICS] << ", ";
lyxerr[Debug::GRAPHICS] << *fit;
}
lyxerr[Debug::GRAPHICS] << '\n' << std::endl;
lyxerr[Debug::GRAPHICS] << '\n' << endl;
return fmts;
}
@ -129,14 +129,14 @@ void QLImage::load(string const & filename)
{
if (!pixmap_.isNull()) {
lyxerr[Debug::GRAPHICS]
<< "Image is loaded already!" << std::endl;
<< "Image is loaded already!" << endl;
finishedLoading(false);
return;
}
if (!pixmap_.load(filename.c_str())) {
lyxerr[Debug::GRAPHICS]
<< "Unable to open image" << std::endl;
<< "Unable to open image" << endl;
finishedLoading(false);
return;
}

View File

@ -93,10 +93,6 @@ QMiniBuffer
- implement as a QStatusBar and a separate QToolbar containing a QComboBox (*)
- make the necessary GUII API changes for this to work (*)
QParagraph
- implement me (MVCed already) (*) [Edwin is working on this]
QPreferences
- implement me (*)