~ubuntu-branches/debian/squeeze/freeciv/squeeze

« back to all changes in this revision

Viewing changes to client/gui-ftwl/connectdlg.c

  • Committer: Bazaar Package Importer
  • Author(s): Clint Adams, Karl Goetz, Clint Adams
  • Date: 2010-02-23 22:09:02 UTC
  • mfrom: (1.2.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20100223220902-kiyrmr9i4152cka5
Tags: 2.2.0-1
[ Karl Goetz ]
* Remove civserver files in /etc/ggzd/ (Closes: 523772, 517787)
* Adding ${misc:Depends} to all binary packages (lintian warnings)

[ Clint Adams ]
* New upstream version.
  - Drop data_dsc_use_bindir.diff (binary pathnames have changed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#include <errno.h>
19
19
#include <stdio.h>              /* sscanf */
20
20
 
 
21
/* utility */
21
22
#include "fcintl.h"
22
23
#include "log.h"
23
24
#include "support.h"
24
25
 
25
 
#include "chatline_common.h"    /* for append_output_window */
26
 
#include "civclient.h"
27
 
#include "clinet.h"             /* for get_server_address */
 
26
/* client */
 
27
#include "chatline_common.h"    /* for output_window_append */
 
28
#include "client_main.h"
 
29
#include "clinet.h"             /* connect_to_server() */
28
30
#include "gui_main.h"
29
31
 
30
32
#include "connectdlg.h"
61
63
    te_destroy_screen(screen);
62
64
    screen = NULL;
63
65
  } else {
64
 
    append_output_window(errbuf);
 
66
    output_window_append(ftc_client, errbuf);
65
67
  }
66
68
}
67
69