ekiga r6399 - trunk/lib/engine/gui/gtk-frontend
- From: jpuydt svn gnome org
- To: svn-commits-list gnome org
- Subject: ekiga r6399 - trunk/lib/engine/gui/gtk-frontend
- Date: Fri, 27 Jun 2008 18:06:47 +0000 (UTC)
Author: jpuydt
Date: Fri Jun 27 18:06:47 2008
New Revision: 6399
URL: http://svn.gnome.org/viewvc/ekiga?rev=6399&view=rev
Log:
Fixed indenting and removed trailing spaces : that code looks bad, I'm sure something is wrong
Modified:
trunk/lib/engine/gui/gtk-frontend/gtk-frontend.cpp
trunk/lib/engine/gui/gtk-frontend/gtk-frontend.h
Modified: trunk/lib/engine/gui/gtk-frontend/gtk-frontend.cpp
==============================================================================
--- trunk/lib/engine/gui/gtk-frontend/gtk-frontend.cpp (original)
+++ trunk/lib/engine/gui/gtk-frontend/gtk-frontend.cpp Fri Jun 27 18:06:47 2008
@@ -58,7 +58,7 @@
GtkFrontend::GtkFrontend (Ekiga::ServiceCore &core)
-{
+{
sigc::connection conn;
Ekiga::PresenceCore *presence_core = NULL;
@@ -75,9 +75,9 @@
roster_view = roster_view_gtk_new (*presence_core);
call_history_view = call_history_view_gtk_new (*history_book);
- addressbook_window =
+ addressbook_window =
addressbook_window_new_with_key (*contact_core, "/apps/ekiga/general/user_interface/addressbook_window");
- chat_window =
+ chat_window =
chat_window_new_with_key (core, "/apps/ekiga/general/user_interface/chat_window");
conn = chat_core->new_chat.connect (sigc::mem_fun (this, &GtkFrontend::on_new_chat));
@@ -95,38 +95,38 @@
const std::string GtkFrontend::get_name () const
-{
- return "gtk-frontend";
+{
+ return "gtk-frontend";
}
const std::string GtkFrontend::get_description () const
-{
- return "\tGtk+ frontend support";
+{
+ return "\tGtk+ frontend support";
}
const GtkWidget *GtkFrontend::get_roster_view () const
-{
- return roster_view;
+{
+ return roster_view;
}
const GtkWidget *GtkFrontend::get_addressbook_window () const
-{
- return addressbook_window;
+{
+ return addressbook_window;
}
const GtkWidget *GtkFrontend::get_chat_window () const
-{
- return chat_window;
+{
+ return chat_window;
}
const GtkWidget *
GtkFrontend::get_call_history_view () const
-{
+{
return call_history_view;
}
Modified: trunk/lib/engine/gui/gtk-frontend/gtk-frontend.h
==============================================================================
--- trunk/lib/engine/gui/gtk-frontend/gtk-frontend.h (original)
+++ trunk/lib/engine/gui/gtk-frontend/gtk-frontend.h Fri Jun 27 18:06:47 2008
@@ -52,33 +52,33 @@
{
public:
- GtkFrontend (Ekiga::ServiceCore & _core);
+ GtkFrontend (Ekiga::ServiceCore & _core);
- ~GtkFrontend ();
+ ~GtkFrontend ();
- const std::string get_name () const;
+ const std::string get_name () const;
- const std::string get_description () const;
+ const std::string get_description () const;
- const GtkWidget *get_roster_view () const;
+ const GtkWidget *get_roster_view () const;
const GtkWidget *get_call_history_view () const;
- const GtkWidget *get_addressbook_window () const;
+ const GtkWidget *get_addressbook_window () const;
- const GtkWidget *get_chat_window () const;
+ const GtkWidget *get_chat_window () const;
private :
- void on_new_chat (const Ekiga::ChatManager & manager,
- const std::string & name,
- const std::string & uri);
+ void on_new_chat (const Ekiga::ChatManager & manager,
+ const std::string & name,
+ const std::string & uri);
- GtkWidget *addressbook_window;
- GtkWidget *roster_view;
+ GtkWidget *addressbook_window;
+ GtkWidget *roster_view;
GtkWidget *call_history_view;
- GtkWidget *chat_window;
+ GtkWidget *chat_window;
- std::vector<sigc::connection> connections;
+ std::vector<sigc::connection> connections;
};
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]