mv src/bin/col.{c,h} src/bin/colors.{c,h}

This commit is contained in:
Boris Faure 2020-08-19 19:16:11 +02:00
parent d331291d5e
commit 19fb6afd73
Signed by: borisfaure
GPG Key ID: 35C0410516166BE8
11 changed files with 13 additions and 13 deletions

View File

@ -12,7 +12,7 @@ src/bin/options_elm.c
src/bin/backlog.c
src/bin/tyq.c
src/bin/options_elm.h
src/bin/col.h
src/bin/colors.h
src/bin/termptygfx.h
src/bin/private.h
src/bin/term_container.h
@ -22,7 +22,7 @@ src/bin/options_theme.c
src/bin/miniview.c
src/bin/options_behavior.c
src/bin/options_video.h
src/bin/col.c
src/bin/colors.c
src/bin/options_behavior.h
src/bin/utf8.h
src/bin/utils.h

View File

@ -2,7 +2,7 @@
#include <assert.h>
#include <Elementary.h>
#include "config.h"
#include "col.h"
#include "colors.h"
typedef struct _Color Color;

View File

@ -4,7 +4,7 @@
#include <Efreet.h>
#include "config.h"
#include "main.h"
#include "col.h"
#include "colors.h"
#include "theme.h"
#define CONF_VER 25

View File

@ -1,6 +1,6 @@
terminology_sources = ['private.h',
'about.c', 'about.h',
'col.c', 'col.h',
'colors.c', 'colors.h',
'config.c', 'config.h',
'controls.c', 'controls.h',
'ipc.c', 'ipc.h',
@ -58,7 +58,7 @@ tyfuzz_sources = ['termptyesc.c', 'termptyesc.h',
'termiointernals.c', 'termiointernals.h',
'termiolink.c', 'termiolink.h',
'config.c', 'config.h',
'col.c', 'col.h',
'colors.c', 'colors.h',
'sb.c', 'sb.h',
'theme.h',
'utils.c', 'utils.h',
@ -75,7 +75,7 @@ tytest_sources = ['termptyesc.c', 'termptyesc.h',
'termiointernals.c', 'termiointernals.h',
'termiolink.c', 'termiolink.h',
'config.c', 'config.h',
'col.c', 'col.h',
'colors.c', 'colors.h',
'sb.c', 'sb.h',
'utf8.c', 'utf8.h',
'utils.c', 'utils.h',

View File

@ -5,7 +5,7 @@
#include <assert.h>
#include <math.h>
#include "col.h"
#include "colors.h"
#include "termpty.h"
#include "termio.h"
#include "termiointernals.h"

View File

@ -8,7 +8,7 @@
#include "options_themepv.h"
#include "theme.h"
#include "main.h"
#include "col.h"
#include "colors.h"
static void
_row_set(Evas_Object *o, int y, const char *txt)

View File

@ -11,7 +11,7 @@
#include "termcmd.h"
#include "termptydbl.h"
#include "utf8.h"
#include "col.h"
#include "colors.h"
#include "keyin.h"
#include "config.h"
#include "theme.h"

View File

@ -3,7 +3,7 @@
#include "config.h"
#include "main.h"
#include "col.h"
#include "colors.h"
#include "termpty.h"
#if !defined(BINARY_TYFUZZ) && !defined(BINARY_TYTEST)
#include "win.h"

View File

@ -2,7 +2,7 @@
#include <Elementary.h>
#include <stdint.h>
#include <assert.h>
#include "col.h"
#include "colors.h"
#include "termio.h"
#include "termpty.h"
#include "termptydbl.h"

View File

@ -13,7 +13,7 @@
#include "termiointernals.h"
#include "tytest_common.h"
#if defined(BINARY_TYTEST)
#include "col.h"
#include "colors.h"
#include "tytest.h"
#endif
#include <assert.h>