diff options
author | Timo Sirainen <cras@irssi.org> | 2001-02-17 19:44:22 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-02-17 19:44:22 +0000 |
commit | be6ba53fa47bc546279a2575523281845fe80da9 (patch) | |
tree | 2f08f6281cfbd38a1df2abe4fe69ccfd6f208f51 /src/core/queries.c | |
parent | 513e140bcebce617d6078a9532ab9976437c3ef6 (diff) | |
download | irssi-be6ba53fa47bc546279a2575523281845fe80da9.zip |
Config file: ircnets -> chatnets, added type = "chat protocol" to
chatnet config. Moved reading chatnets to core. Lots of other
multiprotocol updates.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1237 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/queries.c')
-rw-r--r-- | src/core/queries.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/core/queries.c b/src/core/queries.c index 38a597ad..1888bfdc 100644 --- a/src/core/queries.c +++ b/src/core/queries.c @@ -27,20 +27,6 @@ GSList *queries; -/* Create a new query */ -QUERY_REC *query_create(int chat_type, const char *server_tag, - const char *nick, int automatic) -{ - QUERY_REC *query; - - g_return_val_if_fail(nick != NULL, NULL); - - query = NULL; - signal_emit("query create", 5, &query, GINT_TO_POINTER(chat_type), - server_tag, nick, GINT_TO_POINTER(automatic)); - return query; -} - void query_init(QUERY_REC *query, int automatic) { g_return_if_fail(query != NULL); |