| Commit message (Collapse) | Author | Age | Lines |
| |
|
|
|
|
|
|
| |
Wording copied from https://www.gnu.org/licenses/gpl-howto.en.html
Fixes #25, fixes #71
|
|
|
|
|
|
|
|
| |
The signal QAbstractItemView::activated() is emitted only when
double-clicking or pressing the Enter key on a current item.
Listen to signal QItemSelectionModel::currentChanged(), which is emitted
when the current item is changed with a single click or the arrow keys.
|
|
|
|
| |
This avoids spurious entries when deselecting both incoming and outgoing calls.
|
|
|
|
| |
Automatically resize columns based on entry text widths.
|
|
|
|
|
|
|
|
| |
Call QHeaderView::setSortIndicator() during initialization, which
sets the sort column and order, but does not sort the (empty) table.
After loading the history data call QTableView::sortByColumn() to
sort the entries using the currently selected sort column and order.
|
|
|
|
|
|
|
|
|
| |
When static date/time format was used for "time" column:
- sorting by "time" column was broken
- locale based format of date/time couldn't be enabled
=> use the QDateTime for "time" column and leave Qt handle the showed
format (based on locale)
|
| |
|
| |
|
| |
|
|
from outside the main thread)
|