1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Added ui subdir to source

This commit is contained in:
James Booth 2013-02-02 19:57:46 +00:00
parent 1d3739bb79
commit ed3261a238
10 changed files with 16 additions and 16 deletions

View File

@ -1,16 +1,16 @@
bin_PROGRAMS = profanity
profanity_SOURCES = src/command.c src/contact.c src/command_history.c \
src/preferences.c src/autocomplete.c src/ui_statusbar.c \
src/command.h src/contact.h src/log.c src/preferences.h \
src/autocomplete.h src/ui_titlebar.c src/ui_windows.c src/common.c \
src/contact_list.c src/ui_inputwin.c src/log.h src/profanity.c \
src/history.c src/ui.h src/common.h src/ contact_list.h \
src/main.c src/profanity.h src/history.h src/tinyurl.c src/tinyurl.h \
src/chat_session.c src/chat_session.h src/muc.c src/muc.h \
src/command_parser.c src/theme.c src/theme.h src/window.c src/window.h \
src/files.c src/files.h src/accounts.c src/accounts.h src/jid.h src/jid.c \
src/preferences.c src/autocomplete.c src/command.h src/contact.h \
src/log.c src/preferences.h src/autocomplete.h src/common.c \
src/contact_list.c src/log.h src/profanity.c src/history.c src/common.h \
src/contact_list.h src/main.c src/profanity.h src/history.h src/tinyurl.c \
src/tinyurl.h src/chat_session.c src/chat_session.h src/muc.c src/muc.h \
src/command_parser.c src/theme.c src/theme.h src/files.c src/files.h \
src/accounts.c src/accounts.h src/jid.h src/jid.c \
src/xmpp/xmpp.h src/xmpp/capabilities.c src/xmpp/connection.c \
src/xmpp/iq.c src/xmpp/message.c src/xmpp/presence.c src/xmpp/stanza.c
src/xmpp/iq.c src/xmpp/message.c src/xmpp/presence.c src/xmpp/stanza.c \
src/ui/ui.h src/ui/window.c src/ui/window.h src/ui/windows.c \
src/ui/titlebar.c src/ui/statusbar.c src/ui/inputwin.c
TESTS = tests/testsuite
check_PROGRAMS = tests/testsuite

View File

@ -41,7 +41,7 @@
#include "muc.h"
#include "theme.h"
#include "tinyurl.h"
#include "ui.h"
#include "ui/ui.h"
#include "xmpp/xmpp.h"
typedef char*(*autocomplete_func)(char *);

View File

@ -41,7 +41,7 @@
#include "profanity.h"
#include "muc.h"
#include "theme.h"
#include "ui.h"
#include "ui/ui.h"
#include "xmpp/xmpp.h"
static log_level_t _get_log_level(char *log_level);

View File

@ -1,5 +1,5 @@
/*
* ui_inputwin.c
* inputwin.c
*
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
*

View File

@ -1,5 +1,5 @@
/*
* ui_statusbar.c
* statusbar.c
*
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
*

View File

@ -1,5 +1,5 @@
/*
* ui_titlebar.c
* titlebar.c
*
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
*

View File

@ -1,5 +1,5 @@
/*
* ui_windows.c
* windows.c
*
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
*