mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +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);
|
QStrListIterator it(qt_formats);
|
||||||
|
|
||||||
for (; it.current(); ++it) {
|
for (; it.current(); ++it) {
|
||||||
lyxerr[Debug::GRAPHICS] << it.current() << std::endl;
|
lyxerr[Debug::GRAPHICS] << it.current() << endl;
|
||||||
|
|
||||||
string ext = lowercase(it.current());
|
string ext = lowercase(it.current());
|
||||||
|
|
||||||
@ -84,7 +84,7 @@ Image::FormatList QLImage::loadableFormats()
|
|||||||
lyxerr[Debug::GRAPHICS] << ", ";
|
lyxerr[Debug::GRAPHICS] << ", ";
|
||||||
lyxerr[Debug::GRAPHICS] << *fit;
|
lyxerr[Debug::GRAPHICS] << *fit;
|
||||||
}
|
}
|
||||||
lyxerr[Debug::GRAPHICS] << '\n' << std::endl;
|
lyxerr[Debug::GRAPHICS] << '\n' << endl;
|
||||||
|
|
||||||
return fmts;
|
return fmts;
|
||||||
}
|
}
|
||||||
@ -129,14 +129,14 @@ void QLImage::load(string const & filename)
|
|||||||
{
|
{
|
||||||
if (!pixmap_.isNull()) {
|
if (!pixmap_.isNull()) {
|
||||||
lyxerr[Debug::GRAPHICS]
|
lyxerr[Debug::GRAPHICS]
|
||||||
<< "Image is loaded already!" << std::endl;
|
<< "Image is loaded already!" << endl;
|
||||||
finishedLoading(false);
|
finishedLoading(false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!pixmap_.load(filename.c_str())) {
|
if (!pixmap_.load(filename.c_str())) {
|
||||||
lyxerr[Debug::GRAPHICS]
|
lyxerr[Debug::GRAPHICS]
|
||||||
<< "Unable to open image" << std::endl;
|
<< "Unable to open image" << endl;
|
||||||
finishedLoading(false);
|
finishedLoading(false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -93,10 +93,6 @@ QMiniBuffer
|
|||||||
- implement as a QStatusBar and a separate QToolbar containing a QComboBox (*)
|
- implement as a QStatusBar and a separate QToolbar containing a QComboBox (*)
|
||||||
- make the necessary GUII API changes for this to work (*)
|
- make the necessary GUII API changes for this to work (*)
|
||||||
|
|
||||||
QParagraph
|
|
||||||
|
|
||||||
- implement me (MVCed already) (*) [Edwin is working on this]
|
|
||||||
|
|
||||||
QPreferences
|
QPreferences
|
||||||
|
|
||||||
- implement me (*)
|
- implement me (*)
|
||||||
|
Loading…
Reference in New Issue
Block a user