here: http://lists.kde.org/?l=kmail-devel&m=111945756024656&w=2
I've changed the KMMsgDict::instance() to return a pointer instead of a
reference, compared to the patch I posted, after valid criticism from
Marc that the pattern is generally used with a pointer, in KDE, so it's
better not to surprise people here.
svn path=/trunk/KDE/kdepim/; revision=428560
- it's now possible to enlarge the attachment section (#86330)
- when pressing bold/italic, the buttons react (#89410)
svn path=/trunk/kdepim/; revision=347346
#define kernel KMKernel::self()
to
#define kmkernel KMKernel::self()
because 'kernel' was a much to general term. We really shouldn't repeat the mistakes of the X developers.
I noticed this problem when I played around with KImageEffects. kimageeffects.h contains 'kernel' as parameter of some methods and so the compilation had to fail. We won't need KImageEffects in the near future, but at least we are now prepared and a clash with another 'kernel' can't happen anymore.
svn path=/trunk/kdepim/; revision=252621
The only real changes in kmcomposewin.* are
- QListView *mAtmListBox;
+ KMail::AttachmentListView* mAtmListView;
in kmcomposewin.h and
- mAtmListBox = new QListView(mMainWidget, "mAtmListBox");
+ mAtmListView = new AttachmentListView( this, mMainWidget,
+ "attachment list view" );
in kmcomposewin.cpp. All other changes in kmcomposewin.cpp are just mAtmListBox -> mAtmListView
svn path=/trunk/kdepim/; revision=223858