~ubuntu-branches/debian/sid/gnome-chess/sid

« back to all changes in this revision

Viewing changes to src/dialogs/dialogs.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Rittau
  • Date: 2005-09-04 18:16:43 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050904181643-qfph33u3pa4azz5h
Tags: 0.3.3-6
* Fix problems with gcc 4.0:
  + debian/patches/021-gcc-4.0-fixes.diff: New patch.
  + Closes: #258798 "FTBFS with gcc-3.4: label at end of compound statement"
* Fix wrong Debian patch:
  + debian/patch/019-assertions.diff: Fixed.
  + Partly addresses bug #247846 "Crashes after a few moves (assertion
    failed)". This fix is not perfect. As Göran Weinholt notes in the
    bug report, assertions are not the way to go, but are a temporary
    stop-gap measure. (Better assertions than unpredicable results.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#define GNOMECHESS_DIALOGS_H
3
3
 
4
4
#include <glib.h>
 
5
#include "../pgn.h"
5
6
 
6
7
gint     dialog_promotion (void);
7
8
gboolean dialog_login (gchar **user, gchar **pass);
8
9
gboolean dialog_level (int *moves, int *level_time);
9
10
void     dialog_prefs (void);
 
11
void     dialog_pgn( Pgn_Tag *tag );
10
12
 
11
13
#endif /* GNOMECHESS_DIALOGS_H */