List Info

Thread: kdevelop crash




kdevelop crash
user name
2006-08-30 02:37:21
On Wednesday 30 August 2006 09:38, mwoehlke wrote:
> Every now and then, KDevelop (I'm running 3.3.91)
crashes when loading a
> project. Normally, I wouldn't post this as it appears
to have only
> partial debugging information, except that 'col=-1'
at #14 looks
> suspicious. IIRC I have heard a lot of '-1' bugs on
kate-devel, so I am
> not sure this is KDevelop's fault, although the call
at #15
> (ProjectSession::loadDocument) looks like KDevelop. Any
thoughts?
>
> (KATE folks, to whom I have cross-posted, does this
look familiar?)
>
> I am currently running KDE 3.4.3 but was in the process
of building
> 3.5.4; I am willing to flip on debugging for the whole
enchilada if
> someone reminds me what the flag is. 
>
> ----------
>
> Using host libthread_db library
"/lib/tls/libthread_db.so.1".
> [Thread debugging using libthread_db enabled]
> [New Thread -1208109376 (LWP 25441)]
> [New Thread -1211667536 (LWP 9116)]
> [KCrash handler]
> #4  0x00bac696 in XTranslateCoordinates () from
/usr/X11R6/lib/libX11.so.6
> #5  0x0729dc50 in QWidget::mapFromGlobal ()
>     from /usr/lib/qt-3.3/lib/libqt-mt.so.3
> #6  0x00a05ace in QXIMInputContext::setMicroFocus ()
>     from
/usr/lib/qt-3.3/plugins/inputmethods/libqxim.so

This is a known bug in distro patched versions of Qt.  Dirk
Mueller was 
working on it about a week ago, so it may already be fixed.

The solution I use locally is to delete libqxim.so

Cheers,
Hamish.
_______________________________________________
KDevelop-devel mailing list
KDevelop-develbarney.cs.uni-potsdam.de
https://barney.cs.uni-potsdam.de/mailman/listinf
o/kdevelop-devel
kdevelop crash
user name
2006-08-30 04:25:00
On Wednesday 30 August 2006 05:37, Hamish Rodda wrote:
> This is a known bug in distro patched versions of Qt.
 Dirk Mueller
> was working on it about a week ago, so it may already
be fixed.

Dirk's commit in 3.5 branch says:

This fixes the famous XIM crash that is 
"caused by a broken Qt"


 M  +3 -0      kdevdocumentationplugin.cpp  


--- 
branches/KDE/3.5/kdevelop/parts/documentation/interfaces/kde
vdocumentationplugin.cpp 
#574153:574154
 -300,7
+300,10 
         it != namedCatalogs.end(); ++it)
     {
         if (it.data() == item)
+        {
             namedCatalogs.remove(it);
+            break;
+        }
     }
     //clear indexes for catalog
     QValueList<IndexItemProto *> idx = indexes[item];


---------------------------
I planned to port it to 3.4, but didn't had the time.

Andras
-- 
Quanta Plus developer - http://quanta.kdewebdev.o
rg
K Desktop Environment - http://www.kde.org
_______________________________________________
KDevelop-devel mailing list
KDevelop-develbarney.cs.uni-potsdam.de
https://barney.cs.uni-potsdam.de/mailman/listinf
o/kdevelop-devel
kdevelop crash
user name
2006-08-30 07:30:47
On 30.08.06 12:37:21, Hamish Rodda wrote:
> On Wednesday 30 August 2006 09:38, mwoehlke wrote:
> > Every now and then, KDevelop (I'm running 3.3.91)
crashes when loading a
> > project. Normally, I wouldn't post this as it
appears to have only
> > partial debugging information, except that
'col=-1' at #14 looks
> > suspicious. IIRC I have heard a lot of '-1' bugs
on kate-devel, so I am
> > not sure this is KDevelop's fault, although the
call at #15
> > (ProjectSession::loadDocument) looks like
KDevelop. Any thoughts?
> >
> > (KATE folks, to whom I have cross-posted, does
this look familiar?)
> >
> > I am currently running KDE 3.4.3 but was in the
process of building
> > 3.5.4; I am willing to flip on debugging for the
whole enchilada if
> > someone reminds me what the flag is. 
> >
> > ----------
> >
> > Using host libthread_db library
"/lib/tls/libthread_db.so.1".
> > [Thread debugging using libthread_db enabled]
> > [New Thread -1208109376 (LWP 25441)]
> > [New Thread -1211667536 (LWP 9116)]
> > [KCrash handler]
> > #4  0x00bac696 in XTranslateCoordinates () from
/usr/X11R6/lib/libX11.so.6
> > #5  0x0729dc50 in QWidget::mapFromGlobal ()
> >     from /usr/lib/qt-3.3/lib/libqt-mt.so.3
> > #6  0x00a05ace in QXIMInputContext::setMicroFocus
()
> >     from
/usr/lib/qt-3.3/plugins/inputmethods/libqxim.so
> 
> This is a known bug in distro patched versions of Qt. 
Dirk Mueller was 
> working on it about a week ago, so it may already be
fixed.
> 
> The solution I use locally is to delete libqxim.so

Is that the famous XIM Bug? Well there's an easier
workaround:

export QT_IM_MODULE=simple

before starting you X11 session. Works perfectly here. Also
there was a
fix in the documentation part wt XIM problems, I'm not sure
wether that
was Dirk.

Andreas

-- 
You have a strong appeal for members of the opposite sex.

_______________________________________________
KDevelop-devel mailing list
KDevelop-develbarney.cs.uni-potsdam.de
https://barney.cs.uni-potsdam.de/mailman/listinf
o/kdevelop-devel
kdevelop crash
user name
2006-08-30 08:23:16
I doubt that is the XIM crash. When was the 3.3.91 release?
The change
Dirk did was committed to 3.4 branch three months ago.

http://websvn.kde.org/branches/
kdevelop/3.4/parts/documentation/interfaces/kdevdocumentatio
nplugin.cpp?rev=543292&r1=527281&r2=543292


// jens


On 8/30/06, Andras Mantia <amantiakde.org> wrote:
> On Wednesday 30 August 2006 05:37, Hamish Rodda wrote:
> > This is a known bug in distro patched versions of
Qt. Dirk Mueller
> > was working on it about a week ago, so it may
already be fixed.
>
> Dirk's commit in 3.5 branch says:
>
> This fixes the famous XIM crash that is
> "caused by a broken Qt"
>
>
>  M  +3 -0      kdevdocumentationplugin.cpp
>
>
> ---
>
branches/KDE/3.5/kdevelop/parts/documentation/interfaces/kde
vdocumentationplugin.cpp
> #574153:574154
>  -300,7 +300,10 
>          it != namedCatalogs.end(); ++it)
>      {
>          if (it.data() == item)
> +        {
>              namedCatalogs.remove(it);
> +            break;
> +        }
>      }
>      //clear indexes for catalog
>      QValueList<IndexItemProto *> idx =
indexes[item];
>
>
> ---------------------------
> I planned to port it to 3.4, but didn't had the time.
>
> Andras
> --
> Quanta Plus developer - http://quanta.kdewebdev.o
rg
> K Desktop Environment - http://www.kde.org
>
>
> _______________________________________________
> KDevelop-devel mailing list
> KDevelop-develbarney.cs.uni-potsdam.de
> https://barney.cs.uni-potsdam.de/mailman/listinf
o/kdevelop-devel
>
>
>
>

_______________________________________________
KDevelop-devel mailing list
KDevelop-develbarney.cs.uni-potsdam.de
https://barney.cs.uni-potsdam.de/mailman/listinf
o/kdevelop-devel
kdevelop crash
user name
2006-08-30 14:59:07
On 30.08.06 10:23:16, Jens Dagerbo wrote:
> I doubt that is the XIM crash. When was the 3.3.91
release? The change

3.3.91 was tagged in Revision 556535, so no it's surely not
that
problem.

Andreas

-- 
Troubled day for virgins over 16 who are beautiful and
wealthy and live
in eucalyptus trees.

_______________________________________________
KDevelop-devel mailing list
KDevelop-develbarney.cs.uni-potsdam.de
https://barney.cs.uni-potsdam.de/mailman/listinf
o/kdevelop-devel
[1-5]

about | contact  Other archives ( Real Estate discussion Medical topics )