diff options
Diffstat (limited to 'plugins/NewStory/src/history_control.cpp')
-rw-r--r-- | plugins/NewStory/src/history_control.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/plugins/NewStory/src/history_control.cpp b/plugins/NewStory/src/history_control.cpp index 181d1db10d..5da4a8009d 100644 --- a/plugins/NewStory/src/history_control.cpp +++ b/plugins/NewStory/src/history_control.cpp @@ -728,12 +728,6 @@ static void BeginEditItem(HWND hwnd, NewstoryListData *data, int index) colorid = !(item->dbe.flags&DBEF_SENT) ? COLOR_INFILE : COLOR_OUTFILE; break; - case EVENTTYPE_URL: - tpl = TPL_COPY_URL; - fontid = !(item->dbe.flags&DBEF_SENT) ? FONT_INURL : FONT_OUTURL; - colorid = !(item->dbe.flags&DBEF_SENT) ? COLOR_INURL : COLOR_OUTURL; - break; - case EVENTTYPE_STATUSCHANGE: tpl = TPL_COPY_SIGN; fontid = FONT_STATUS; @@ -804,11 +798,6 @@ static int LayoutItem(HWND hwnd, HistoryArray *items, int index) fontid = !(item->dbe.flags&DBEF_SENT) ? FONT_INFILE : FONT_OUTFILE; break; - case EVENTTYPE_URL: - tpl = TPL_URL; - fontid = !(item->dbe.flags&DBEF_SENT) ? FONT_INURL : FONT_OUTURL; - break; - case EVENTTYPE_STATUSCHANGE: tpl = TPL_SIGN; fontid = FONT_STATUS; @@ -870,12 +859,6 @@ static int PaintItem(HDC hdc, HistoryArray *items, int index, int top, int width colorid = !(item->dbe.flags&DBEF_SENT) ? COLOR_INFILE : COLOR_OUTFILE; break; - case EVENTTYPE_URL: - tpl = TPL_URL; - fontid = !(item->dbe.flags&DBEF_SENT) ? FONT_INURL : FONT_OUTURL; - colorid = !(item->dbe.flags&DBEF_SENT) ? COLOR_INURL : COLOR_OUTURL; - break; - case EVENTTYPE_STATUSCHANGE: tpl = TPL_SIGN; fontid = FONT_STATUS; |