Skip to content

Commit

Permalink
timeoutType -> timeout_type
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed Sep 18, 2019
1 parent 0806aee commit d599c15
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -108,7 +108,7 @@ void LibnotifyNotification::Show(const NotificationOptions& options) {
}

// Set the timeout duration for the notification
bool neverTimeout = options.timeoutType == base::ASCIIToUTF16("never");
bool neverTimeout = options.timeout_type == base::ASCIIToUTF16("never");
int timeout = (neverTimeout) ? NOTIFY_EXPIRES_NEVER : NOTIFY_EXPIRES_DEFAULT;
libnotify_loader_.notify_notification_set_timeout(notification_, timeout);

Expand Down

0 comments on commit d599c15

Please sign in to comment.