~ubuntu-branches/ubuntu/intrepid/gnome-games/intrepid

« back to all changes in this revision

Viewing changes to gtali/gyahtzee.c

  • Committer: Package Import Robot
  • Author(s): Daniel Holbach
  • Date: 2007-02-13 08:40:20 UTC
  • mto: This revision was merged to the branch mainline in revision 35.
  • Revision ID: package-import@ubuntu.com-20070213084020-zewbmxapszr0alkc
Tags: upstream-2.17.91
ImportĀ upstreamĀ versionĀ 2.17.91

Show diffs side-by-side

added added

removed removed

Lines of Context:
193
193
      if (dialog) {
194
194
        gtk_window_present (GTK_WINDOW (dialog));
195
195
      } else {
196
 
        dialog = games_scores_dialog_new (highscores, _("Tali Scores"));
 
196
        dialog = games_scores_dialog_new (GTK_WINDOW (window), highscores, _("Tali Scores"));
197
197
        message =
198
198
          g_strdup_printf ("<b>%s</b>\n\n%s", _("Congratulations!"),
199
199
                         _("Your score has made the top ten."));
547
547
ShowHighScores (void)
548
548
{
549
549
  if (!dialog)
550
 
    dialog = games_scores_dialog_new (highscores, _("Tali Scores"));
 
550
    dialog = games_scores_dialog_new (GTK_WINDOW (window), highscores, _("Tali Scores"));
551
551
 
552
552
  gtk_dialog_run (GTK_DIALOG (dialog));    
553
553
  gtk_widget_hide (dialog);