diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-07-15 21:23:05 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-07-15 21:23:05 +0800 |
commit | 9b5fcf29d8257f0a93e977fae7a874a387194e58 (patch) | |
tree | e953507adb3b1939fd3369e559c65904dc33bf2a /libempathy/empathy-chatroom.c | |
parent | e7e92079602078eacb01fb82ce15c658937d7563 (diff) | |
download | gsoc2013-empathy-9b5fcf29d8257f0a93e977fae7a874a387194e58.tar gsoc2013-empathy-9b5fcf29d8257f0a93e977fae7a874a387194e58.tar.gz gsoc2013-empathy-9b5fcf29d8257f0a93e977fae7a874a387194e58.tar.bz2 gsoc2013-empathy-9b5fcf29d8257f0a93e977fae7a874a387194e58.tar.lz gsoc2013-empathy-9b5fcf29d8257f0a93e977fae7a874a387194e58.tar.xz gsoc2013-empathy-9b5fcf29d8257f0a93e977fae7a874a387194e58.tar.zst gsoc2013-empathy-9b5fcf29d8257f0a93e977fae7a874a387194e58.zip |
Fix reviewer comments
svn path=/trunk/; revision=1237
Diffstat (limited to 'libempathy/empathy-chatroom.c')
-rw-r--r-- | libempathy/empathy-chatroom.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libempathy/empathy-chatroom.c b/libempathy/empathy-chatroom.c index 17be191e5..91f86d04e 100644 --- a/libempathy/empathy-chatroom.c +++ b/libempathy/empathy-chatroom.c @@ -188,15 +188,12 @@ chatroom_set_property (GObject *object, } EmpathyChatroom * -empathy_chatroom_new (McAccount *account, - const gchar *room) +empathy_chatroom_new (McAccount *account) { g_return_val_if_fail (MC_IS_ACCOUNT (account), NULL); - g_return_val_if_fail (room != NULL, NULL); return g_object_new (EMPATHY_TYPE_CHATROOM, "account", account, - "room", room, NULL); } |