Fix doxygen.

This commit is contained in:
Dave Davenport 2017-01-08 16:23:17 +01:00
parent 3944a5bde2
commit 8543ac8438
3 changed files with 23 additions and 2 deletions

View File

@ -5,10 +5,14 @@
#include <widgets/widget.h>
#include <settings.h>
/** Style of line */
typedef enum {
/** Solid line */
SOLID,
/** Dashed line */
DASH
} LineStyle;
/**
* Distance unit type.
*/
@ -88,18 +92,33 @@ typedef struct
Distance left;
} Padding;
/**
* Property structure.
*/
typedef struct Property {
/** Name of property */
char *name;
/** Type of property. */
PropertyType type;
/** Value */
union {
/** integer */
int i;
/** Double */
double f;
/** String */
char *s;
int b;
/** boolean */
gboolean b;
/** Color */
ThemeColor color;
/** Padding */
Padding padding;
/** Reference */
struct {
/** Name */
char *name;
/** Cached looked up ref */
struct Property *ref;
} link;
} value;

View File

@ -578,8 +578,9 @@ static void error_trap_pop ( G_GNUC_UNUSED SnDisplay *display, xcb_connection_t
xcb_flush ( xdisplay );
--error_trap_depth;
}
/** Retry count of grabbing keyboard. */
unsigned int lazy_grab_retry_count_kb = 0;
/** Retry count of grabbing pointer. */
unsigned int lazy_grab_retry_count_pt = 0;
static gboolean lazy_grab_pointer ( G_GNUC_UNUSED gpointer data )
{

View File

@ -9,6 +9,7 @@
#include "widgets/textbox.h"
#include "view.h"
/** Logging domain for theme */
#define LOG_DOMAIN "Theme"
void yyerror ( YYLTYPE *ylloc, const char *);