Comment 2 for bug 38743

Revision history for this message
oscar (oscar84) wrote : Re: Keyboard Entry Doesn't Work in noteedit - FIX

I found the solution for this bug (thank you, Google!)
I followed the instructions from this page:
http://cbenz.tuxfamily.org/index.php?n=Main.NoteeditBug

First I downloaded the source of noteedit for ubuntu (using deb-src ttp://es.archive.ubuntu.com/ubuntu/ dapper universe) with the command
apt-get source noteedit, then I edited noteedit/mainframewidget.cpp, changing:

 keys_ = new KAccel(this);

by:

 keys_ = new KAccel((QWidget*)this->parent());

After this, I only needed to rebuild the package and keyboard is working OK now. Could this fix be applied to ubuntu package? Thanks.