[vte/wip/sixels: 84/111] sixel: Rename to sixelparser
- From: Christian Persch <chpe src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vte/wip/sixels: 84/111] sixel: Rename to sixelparser
- Date: Sat, 8 Aug 2020 18:43:02 +0000 (UTC)
commit 9d421e3dddc6d7e4ecbba7032aa621e0629594ed
Author: Hans Petter Jansson <hpj cl no>
Date: Sat Aug 8 20:42:49 2020 +0200
sixel: Rename to sixelparser
src/meson.build | 4 ++--
src/{sixel.cc => sixelparser.cc} | 2 +-
src/{sixel.h => sixelparser.hh} | 0
src/vteinternal.hh | 2 +-
src/vteseq.cc | 1 -
5 files changed, 4 insertions(+), 5 deletions(-)
---
diff --git a/src/meson.build b/src/meson.build
index f38b8c3e..bcbfcad0 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -128,8 +128,8 @@ libvte_common_sources = debug_sources + glib_glue_sources + libc_glue_sources +
'ring.hh',
'ringview.cc',
'ringview.hh',
- 'sixel.cc',
- 'sixel.h',
+ 'sixelparser.cc',
+ 'sixelparser.hh',
'spawn.cc',
'spawn.hh',
'utf8.cc',
diff --git a/src/sixel.cc b/src/sixelparser.cc
similarity index 99%
rename from src/sixel.cc
rename to src/sixelparser.cc
index 8b6176c8..74434223 100644
--- a/src/sixel.cc
+++ b/src/sixelparser.cc
@@ -24,7 +24,7 @@
#include <string.h> /* memcpy */
#include <glib.h>
-#include "sixel.h"
+#include "sixelparser.hh"
#define PACK_RGB(r, g, b) ((r) + ((g) << 8) + ((b) << 16))
#define SCALE_VALUE(n,a,m) (((n) * (a) + ((m) / 2)) / (m))
diff --git a/src/sixel.h b/src/sixelparser.hh
similarity index 100%
rename from src/sixel.h
rename to src/sixelparser.hh
diff --git a/src/vteinternal.hh b/src/vteinternal.hh
index 97596173..4f8d01f0 100644
--- a/src/vteinternal.hh
+++ b/src/vteinternal.hh
@@ -48,7 +48,7 @@
#include "vtepcre2.h"
#include "vteregexinternal.hh"
-#include "sixel.h"
+#include "sixelparser.hh"
#include "chunk.hh"
#include "pty.hh"
diff --git a/src/vteseq.cc b/src/vteseq.cc
index c31f7d64..765d7295 100644
--- a/src/vteseq.cc
+++ b/src/vteseq.cc
@@ -35,7 +35,6 @@
#include "vtegtk.hh"
#include "caps.hh"
#include "debug.h"
-#include "sixel.h"
#define BEL_C0 "\007"
#define ST_C0 _VTE_CAP_ST
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]