On Fri, Aug 02, 2002 at 10:11:56AM +0200, Laurent Montel wrote:
> What do you think about my patch.
Two minor comments:
1) + text.remove(pos, QString("\n").length() );
Why not just text.remove( pos, 1 ); ? :)
2) + resize( 530, 230 );
That one scares me :) . Why is it necessary to hardcode the size
of the dialog?
Simon