Skip to content
Commit 9d52b22b authored by Albert Astals Cid's avatar Albert Astals Cid
Browse files

KMail: Fix scrolling up/down on the message viewer

The new style connection for signals does not support default arguments so

connect(mScrollUpAction, &QAction::triggered,
            q, &Viewer::slotScrollUp);

Connects the version of triggered(bool) with slotScrollUp meaning that slotScrollUp always gets a 0 since the action is never checked.

This breaks the API but the widget is only used internally so i think it's something we can live on.

REVIEW: 125565
parent 74d26352
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment