about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-06-15 23:17:11 +0100
committerJames Booth <boothj5@gmail.com>2015-06-15 23:17:11 +0100
commit637b8bee9fcaeedbb09636b76e34270abbfcab47 (patch)
tree1de8a0181678fa44f1018a1fe86c6ca0a413942d /src/ui
parentde4745059465f0baa21b4c3e721971cf40cd0d87 (diff)
parentfb0e0659023e6483418de2a06626d640644e94d9 (diff)
downloadprofani-tty-637b8bee9fcaeedbb09636b76e34270abbfcab47.tar.gz
Merge branch 'master' into openpgp
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/core.c13
-rw-r--r--src/ui/ui.h1
2 files changed, 0 insertions, 14 deletions
diff --git a/src/ui/core.c b/src/ui/core.c
index 6cfa8594..f517d51d 100644
--- a/src/ui/core.c
+++ b/src/ui/core.c
@@ -1151,19 +1151,6 @@ ui_current_win_type(void)
     return current->type;
 }
 
-gboolean
-ui_current_win_is_otr(void)
-{
-    ProfWin *current = wins_get_current();
-    if (current->type == WIN_CHAT) {
-        ProfChatWin *chatwin = (ProfChatWin*)current;
-        assert(chatwin->memcheck == PROFCHATWIN_MEMCHECK);
-        return chatwin->enc_mode == PROF_ENC_OTR;
-    } else {
-        return FALSE;
-    }
-}
-
 win_type_t
 ui_win_type(int index)
 {
diff --git a/src/ui/ui.h b/src/ui/ui.h
index cd5349d2..abe50435 100644
--- a/src/ui/ui.h
+++ b/src/ui/ui.h
@@ -194,7 +194,6 @@ int ui_close_read_wins(void);
 
 // current window actions
 win_type_t ui_current_win_type(void);
-gboolean ui_current_win_is_otr(void);
 
 void ui_current_print_line(const char * const msg, ...);
 void ui_current_print_formatted_line(const char show_char, int attrs, const char * const msg, ...);