On 22/09/2008 11:50, Jean-Marc Lasgouttes wrote:
I get in frontends/qt4:
g++ -DHAVE_CONFIG_H -I. -I../../../../lyx-devel/src/frontends/qt4 -I../../..
-DQT_NO_STL -DQT_NO_KEYWORDS -DQT_NO_CAST_TO_ASCII -DQT_NO_STL
-I../../../../lyx-devel/src -I../../../../lyx-devel/src/frontends
-I../../../../lyx-devel/images -DQT_SHARED -I/usr/lib/qt4/include
-I/usr/lib/qt4/include/QtCore -I/usr/lib/qt4/include/QtGui
-I../../../../lyx-devel/boost -Wextra -Wall -g -O -MT GuiFloat.lo -MD -MP -MF
.deps/GuiFloat.Tpo -c ../../../../lyx-devel/src/frontends/qt4/GuiFloat.cpp -o
GuiFloat.o
In file included from ../../../../lyx-devel/src/frontends/qt4/GuiFloat.h:16,
from ../../../../lyx-devel/src/frontends/qt4/GuiFloat.cpp:13:
./ui_FloatUi.h:23:33: error: lyx::floatplacement.h: No such file or directory
The case is wrong, should be FloatPlacement.h... weird.
I cant' reproduce (MSVC manage to find the class within the LyX
namespace but I guess this is related to this part:
Author: poenitz
Date: Sat Sep 20 15:44:51 2008
New Revision: 26467
URL:http://www.lyx.org/trac/changeset/26467
Log:
cosmetics. remoe strange dependency of GuiDocument.h
Modified:
lyx-devel/trunk/src/frontends/qt4/FloatPlacement.cpp
lyx-devel/trunk/src/frontends/qt4/FloatPlacement.h
lyx-devel/trunk/src/frontends/qt4/GuiDocument.cpp
lyx-devel/trunk/src/frontends/qt4/GuiDocument.h
lyx-devel/trunk/src/frontends/qt4/GuiSelectionManager.cpp
lyx-devel/trunk/src/frontends/qt4/GuiSelectionManager.h
lyx-devel/trunk/src/frontends/qt4/ui/FloatUi.ui
Modified: lyx-devel/trunk/src/frontends/qt4/FloatPlacement.cpp
URL:http://www.lyx.org/trac/file/lyx-devel/trunk/src/frontends/qt4/FloatPlacement.cpp?rev=26467
==============================================================================
--- lyx-devel/trunk/src/frontends/qt4/FloatPlacement.cpp (original)
+++ lyx-devel/trunk/src/frontends/qt4/FloatPlacement.cpp Sat Sep 20 15:44:51
2008
@@ -21,7 +21,7 @@
using namespace lyx::support;
-//namespace lyx {
+namespace lyx {
FloatPlacement::FloatPlacement(QWidget *)
{
@@ -239,6 +239,6 @@
}
}
-//} // namespace lyx
+} // namespace lyx
Abdel.