diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-01-10 19:27:11 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-01-10 19:37:06 +0800 |
commit | 937cddcf2bb9ec3039092841553603a60ee496b5 (patch) | |
tree | a9dd0c45a80620dd42eaa157eb5005b6c9b72803 /src/empathy.c | |
parent | abd40a92cc32ddabb8aa9cdcfeb7dac696dd04bf (diff) | |
download | gsoc2013-empathy-937cddcf2bb9ec3039092841553603a60ee496b5.tar gsoc2013-empathy-937cddcf2bb9ec3039092841553603a60ee496b5.tar.gz gsoc2013-empathy-937cddcf2bb9ec3039092841553603a60ee496b5.tar.bz2 gsoc2013-empathy-937cddcf2bb9ec3039092841553603a60ee496b5.tar.lz gsoc2013-empathy-937cddcf2bb9ec3039092841553603a60ee496b5.tar.xz gsoc2013-empathy-937cddcf2bb9ec3039092841553603a60ee496b5.tar.zst gsoc2013-empathy-937cddcf2bb9ec3039092841553603a60ee496b5.zip |
rename MainWindow to RosterWindow
With the process split it doesn't really make sense to continue calling it
'main' window, it's just the roster now.
Diffstat (limited to 'src/empathy.c')
-rw-r--r-- | src/empathy.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/empathy.c b/src/empathy.c index 47b115d85..f59a54f17 100644 --- a/src/empathy.c +++ b/src/empathy.c @@ -65,7 +65,7 @@ #include <libempathy-gtk/empathy-location-manager.h> #include <libempathy-gtk/empathy-notify-manager.h> -#include "empathy-main-window.h" +#include "empathy-roster-window.h" #include "empathy-accounts-common.h" #include "empathy-accounts-dialog.h" #include "empathy-status-icon.h" @@ -289,8 +289,8 @@ out: /* Rely on GNOME Shell to watch session state */ empathy_presence_manager_set_auto_away (self->presence_mgr, FALSE); - empathy_main_window_set_shell_running (EMPATHY_MAIN_WINDOW (self->window), - TRUE); + empathy_roster_window_set_shell_running ( + EMPATHY_ROSTER_WINDOW (self->window), TRUE); } else { @@ -355,7 +355,7 @@ empathy_app_command_line (GApplication *app, self->activated = TRUE; /* Setting up UI */ - self->window = empathy_main_window_dup (); + self->window = empathy_roster_window_dup (); gtk_application_add_window (GTK_APPLICATION (app), GTK_WINDOW (self->window)); @@ -381,8 +381,8 @@ empathy_app_command_line (GApplication *app, } if (self->show_preferences) - empathy_main_window_show_preferences (EMPATHY_MAIN_WINDOW (self->window), - self->preferences_tab); + empathy_roster_window_show_preferences ( + EMPATHY_ROSTER_WINDOW (self->window), self->preferences_tab); if (!self->start_hidden) empathy_window_present (GTK_WINDOW (self->window)); |