Skip to content

Commit

Permalink
[CI] Update doxygen-coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveDavenport committed Dec 23, 2024
1 parent 8b9afa3 commit 54ebfa7
Show file tree
Hide file tree
Showing 5 changed files with 103 additions and 96 deletions.
3 changes: 3 additions & 0 deletions include/helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,9 @@ char *helper_string_replace_if_exists(char *string, ...);
* @param ext NULL terminated array of file extension passed to option.
* @param parent_dir The file that was used to import this file, or NULL.
*
* Get the full path to the theme, trying to resolve it over the possible
* locations.
*
* @returns path to theme or copy of filename if not found.
*/
char *helper_get_theme_path(const char *file, const char **ext,
Expand Down
1 change: 1 addition & 0 deletions source/helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
/** The log domain for this helper. */
#define G_LOG_DOMAIN "Helper"

#include "helper.h"
#include "config.h"
#include "display.h"
#include "helper-theme.h"
Expand Down
6 changes: 4 additions & 2 deletions source/modes/help-keys.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@
#include "xrmoptions.h"

typedef struct {
/** array of strings containing key descriptions */
char **messages;
/** lengths of the messages array */
unsigned int messages_length;
} KeysHelpModePrivateData;

Expand Down Expand Up @@ -118,5 +120,5 @@ Mode help_keys_mode = {.name = "keys",
._get_completion = NULL,
._get_display_value = _get_display_value,
.private_data = NULL,
.free = NULL,
.type = MODE_TYPE_SWITCHER };
.free = NULL,
.type = MODE_TYPE_SWITCHER};
Loading

0 comments on commit 54ebfa7

Please sign in to comment.