diff options
author | nyamatongwe <unknown> | 2002-10-03 01:34:29 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-10-03 01:34:29 +0000 |
commit | b9421289267244b65832ad0d0955abd68b07a1df (patch) | |
tree | 3158a7e57d4ac630e7ba7a0eaabdc3226141d1e1 /src/Editor.cxx | |
parent | 85c8267b67e9c7bdf49916db228ed84b7b1d4904 (diff) | |
download | scintilla-mirror-b9421289267244b65832ad0d0955abd68b07a1df.tar.gz |
Cleaned up pixmap marker code.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 13 |
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; |