mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
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:
parent
0e94da770a
commit
a598ff6bd3
@ -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;
|
||||
}
|
||||
|
@ -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 (*)
|
||||
|
Loading…
Reference in New Issue
Block a user