1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Fix command headers

This commit is contained in:
James Booth 2016-05-23 00:06:01 +01:00
parent fb34785566
commit dfe613418f
6 changed files with 15 additions and 10 deletions

View File

@ -1,5 +1,5 @@
/*
* cmd_autocomplete.c
* cmd_ac.c
*
* Copyright (C) 2012 - 2016 James Booth <boothj5@gmail.com>
*

View File

@ -1,5 +1,5 @@
/*
* cmd_autocomplete.h
* cmd_ac.h
*
* Copyright (C) 2012 - 2016 James Booth <boothj5@gmail.com>
*
@ -32,6 +32,9 @@
*
*/
#ifndef CMD_AC_H
#define CMD_AC_H
#include "config/preferences.h"
#include "command/cmd_funcs.h"
@ -55,3 +58,5 @@ void cmd_ac_remove_form_fields(DataForm *form);
char* cmd_ac_complete(ProfWin *window, const char *const input);
void cmd_ac_reset(ProfWin *window);
#endif

View File

@ -1,5 +1,5 @@
/*
* command.c
* cmd_defs.c
*
* Copyright (C) 2012 - 2016 James Booth <boothj5@gmail.com>
*

View File

@ -1,5 +1,5 @@
/*
* command.h
* cmd_defs.h
*
* Copyright (C) 2012 - 2016 James Booth <boothj5@gmail.com>
*
@ -32,8 +32,8 @@
*
*/
#ifndef COMMAND_H
#define COMMAND_H
#ifndef CMD_DEFS_H
#define CMD_DEFS_H
#include <glib.h>

View File

@ -1,5 +1,5 @@
/*
* commands.c
* cmd_funcs.c
*
* Copyright (C) 2012 - 2016 James Booth <boothj5@gmail.com>
*

View File

@ -1,5 +1,5 @@
/*
* commands.h
* cmd_funcs.h
*
* Copyright (C) 2012 - 2016 James Booth <boothj5@gmail.com>
*
@ -32,8 +32,8 @@
*
*/
#ifndef COMMANDS_H
#define COMMANDS_H
#ifndef CMD_FUNCS_H
#define CMD_FUNCS_H
#include "ui/win_types.h"