summaryrefslogtreecommitdiff
path: root/desktop/plot_style.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2009-07-14 12:42:02 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2009-07-14 12:42:02 +0000
commit2d95b8aa57a160cb05082bf29b4103c6ffd36e79 (patch)
treea078c380f799d96cbcc656d48d5faa6662c8f43f /desktop/plot_style.h
parent336b21198dd9ef58ad208e5232781bf9f04b29ab (diff)
downloadnetsurf-2d95b8aa57a160cb05082bf29b4103c6ffd36e79.tar.gz
netsurf-2d95b8aa57a160cb05082bf29b4103c6ffd36e79.tar.bz2
Rename debug outline plot styles and make them const.
svn path=/trunk/netsurf/; revision=8518
Diffstat (limited to 'desktop/plot_style.h')
-rw-r--r--desktop/plot_style.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/desktop/plot_style.h b/desktop/plot_style.h
index 8c10af0fa..76843fad4 100644
--- a/desktop/plot_style.h
+++ b/desktop/plot_style.h
@@ -82,10 +82,10 @@ extern plot_style_t *plot_style_fill_white;
extern plot_style_t *plot_style_fill_red;
extern plot_style_t *plot_style_fill_black;
-/* global stroke styles */
-extern plot_style_t *plot_style_stroke_red;
-extern plot_style_t *plot_style_stroke_blue;
-extern plot_style_t *plot_style_stroke_yellow;
+/* Box model debug outline styles for content, padding and margin edges */
+extern plot_style_t const * const plot_style_content_edge;
+extern plot_style_t const * const plot_style_padding_edge;
+extern plot_style_t const * const plot_style_margin_edge;
/* other styles */
extern plot_style_t *plot_style_caret;