Abdelrazak Younes <[EMAIL PROTECTED]> writes:

| Lars Gullik Bjønnes wrote:
| > GuiWorkArea.C: In member function 'virtual void
| > lyx::frontend::GuiWorkArea::inputMethodEvent(QInputMethodEvent*)':
| > GuiWorkArea.C:606: error: 'class QInputMethodEvent' has no member named 
'text'
| >
| I've checked in a fix:
| 
| GuiWorkArea::inputMethodEvent():
| In Qt4.1.4, QInputMethodEvent has apparently no text() method,
| replaced that preeditString() method.

I have not idea if that is correct or not, I have never used input
methods.

Btw. I found another thing:

Index: src/frontends/qt4/Application.C
===================================================================
--- src/frontends/qt4/Application.C     (revision 14204)
+++ src/frontends/qt4/Application.C     (working copy)
@@ -59,9 +59,10 @@
 #endif
 }

+
 void Application::setBufferView(BufferView * buffer_view)
 {
-       buffer_view_ = buffer_view_;
+       buffer_view_ = buffer_view;
 }


I typo I guess.

-- 
        Lgb

Reply via email to