https://bugs.documentfoundation.org/show_bug.cgi?id=84263

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
            Version|4.3.1.2 release             |4.4.1.2 rc
         Resolution|NOTOURBUG                   |---

--- Comment #4 from [email protected] ---
Sorry, but the problem described is still present in recent versions (at least
in 4.4.1.2) and makes compilation fail. Maybe I did not explain clear enough...

The problem is not in the include paths that are passed as compiler options,
these are fine. The point is that the code uses deprecated and sometimes also
wrong include directives - the errors are in the source code, not in the build
environment! 

Somtimes the quotation is wrong, sometimes the component is missing (which is
recommended by Qt since some years), somethimes the old fashioned (and also
deprecated) file names are used.

Here some examples:

old/wrong:              => should be:
#include "QString"      => #include <QtCore/QString>
#include <qclipboard.h> => #include <QtGui/QClipboard>
#include <QHash>        => #include <QtCore/QHash>

I attached a patch to fix these things...

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to