Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary "id" member of TrNotification in gtk/notify.c #851

Merged
merged 3 commits into from
Aug 7, 2021

Commits on Feb 28, 2019

  1. Remove unnecessary "id" member of TrNotification in gtk/notify.c

    The "id" member's only purpose is to serve as the key for the
    active_notifications hash table. However, the same thing can be very easily
    achieved by switching the GHashTable's hash/equal functions to "direct", which
    just use the void pointers (which all keys are in a GHashTable) directly as if
    they were values, and use GUINT_TO_POINTER() when referring to this hash table's
    key.
    xavery committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    c080342 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2020

  1. Configuration menu
    Copy the full SHA
    52a9481 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2021

  1. Configuration menu
    Copy the full SHA
    30d3743 View commit details
    Browse the repository at this point in the history