[vte/wip/sixels: 74/82] sixel: Rename to sixelparser



commit 3e287664c233a79dbc9428ffedbf5e7b88824afe
Author: Hans Petter Jansson <hpj cl no>
Date:   Fri Jun 26 01:08:27 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 bd85a090..c887373e 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -125,8 +125,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]