> "Angus" == Angus Leeming <[EMAIL PROTECTED]> writes:
Angus> Anand wrote:
>> How do you enforce compiling without STL?
Angus> Qt's STL compatibility mode means that QString can be converted
Angus> implicitly to/from std::string.
Yes, and it is disabled by defining QT_NO_STL.
Jarc
Anand wrote:
> How do you enforce compiling without STL?
Qt's STL compatibility mode means that QString can be converted implicitly
to/from std::string.
--
Angus
On Sunday 17 Jul 2005 6:16 pm, Georg Baum wrote:
> Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]:
> > Can anybody help to correct this error?
>
> Change line 350 of QPrefs.C from
>
> if (cb->text(i) == default_font_name) {
>
> to
> if (fromqstr(cb->text(i)) == default_font_name) {
>
>
On Sunday 17 Jul 2005 9:33 pm, Jean-Marc Lasgouttes wrote:
> > "Georg" == Georg Baum <[EMAIL PROTECTED]> writes:
>
> Georg> Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]:
> >> Can anybody help to correct this error?
>
> Georg> Change line 350 of QPrefs.C from
>
> Georg> if (cb->tex
On Sun, 17 Jul 2005, Jean-Marc Lasgouttes wrote:
I did that in 1.3.7, and additionally enforced compiling without STL
compatibility.
JMarc,
Thank you. Patrick seems to not be a fan of STL. I had fits trying to
compile a GIS application that requires it. Finally just gave up.
Rich
--
Dr. R
> "Georg" == Georg Baum <[EMAIL PROTECTED]> writes:
Georg> Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]:
>> Can anybody help to correct this error?
Georg> Change line 350 of QPrefs.C from
Georg> if (cb->text(i) == default_font_name) {
Georg> to if (fromqstr(cb->text(i)) == def
Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]:
> Can anybody help to correct this error?
Change line 350 of QPrefs.C from
if (cb->text(i) == default_font_name) {
to
if (fromqstr(cb->text(i)) == default_font_name) {
Georg
Hello,
I tried to compile LyX-1.3.6 on stock Slackware 10.1 system. My build script
is given below:
#!/bin/sh
VERSION=1.3.6
SLKCFLAGS="-O2 -march=i486 -mcpu=i686"
CFLAGS="$SLKCFLAGS"
CXXFLAGS="$SLKCFLAGS"
rm -rf lyx-$VERSION
tar -xjvf lyx-$VERSION.tar.bz2
cd lyx-$VERSION
# Corret ownerships