aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-10-03 01:34:29 +0000
committernyamatongwe <devnull@localhost>2002-10-03 01:34:29 +0000
commit5e5f9dea93e559656127de711421d792fc43ee73 (patch)
tree3158a7e57d4ac630e7ba7a0eaabdc3226141d1e1 /src/Editor.cxx
parent1b7a4d95458686fcd208cedf12882b665b5bdbcd (diff)
downloadscintilla-mirror-5e5f9dea93e559656127de711421d792fc43ee73.tar.gz
Cleaned up pixmap marker code.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 425847852..790840f51 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -5142,19 +5142,6 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) {
case SCI_MARKERDEFINE:
if (wParam <= MARKER_MAX)
vs.markers[wParam].markType = lParam;
- {
- static char *stop_xpm = "\
- static char *stop_xpm[] = {\
-\"4 4 3 1\",\
-\" c None\",\
-\". c #0000FF\",\
-\"+ c #FFFF00\",\
-\" .. \",\
-\".++.\",\
-\".++.\",\
-\" .. \"};";
- vs.markers[wParam].SetXPM(stop_xpm);
- };
InvalidateStyleData();
RedrawSelMargin();
break;