~bcurtiswx/ubuntu/precise/empathy/3.4.2.1-0ubuntu1

« back to all changes in this revision

Viewing changes to tests/interactive/test-empathy-account-assistant.c

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2009-11-16 23:40:52 UTC
  • mfrom: (1.1.39 upstream)
  • mto: (6.3.7 experimental)
  • mto: This revision was merged to the branch mainline in revision 80.
  • Revision ID: james.westby@ubuntu.com-20091116234052-7hhwrpeln4mwdyw7
Tags: upstream-2.29.2
ImportĀ upstreamĀ versionĀ 2.29.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <config.h>
 
2
 
 
3
#include <gtk/gtk.h>
 
4
 
 
5
#include <libempathy-gtk/empathy-ui-utils.h>
 
6
#include "empathy-account-assistant.h"
 
7
 
 
8
int main (int argc, char **argv)
 
9
{
 
10
  GtkWidget *assistant;
 
11
 
 
12
  gtk_init (&argc, &argv);
 
13
  empathy_gtk_init ();
 
14
 
 
15
  assistant = empathy_account_assistant_show (NULL);
 
16
 
 
17
  gtk_widget_show_all (assistant);
 
18
 
 
19
  g_signal_connect_swapped (assistant, "destroy",
 
20
      G_CALLBACK (gtk_main_quit), NULL);
 
21
 
 
22
  gtk_main ();
 
23
 
 
24
  return 0;
 
25
}