Correct integer type used for times
Some functions used guint instead of gint64. This commit corrects them all.
This commit is contained in:
parent
756e8fa4fd
commit
eeb9d87cc3
@ -53,7 +53,7 @@ static gboolean mainWindow_list_entry_visible(GtkTreeModel *model,
|
||||
gboolean search_matched = 0;
|
||||
|
||||
GDateTime *datetime;
|
||||
guint time;
|
||||
gint64 time;
|
||||
|
||||
if (mainWindow->filterSettings.hide_all)
|
||||
return FALSE;
|
||||
@ -126,8 +126,8 @@ static gint mainWindow_sort_date_compare_func(GtkTreeModel *model,
|
||||
{
|
||||
GDateTime *datetime1;
|
||||
GDateTime *datetime2;
|
||||
guint time1;
|
||||
guint time2;
|
||||
gint64 time1;
|
||||
gint64 time2;
|
||||
|
||||
gtk_tree_model_get(model, a, COL_TIMESTAMP, &datetime1, -1);
|
||||
gtk_tree_model_get(model, b, COL_TIMESTAMP, &datetime2, -1);
|
||||
|
Loading…
Reference in New Issue
Block a user