~ubuntu-branches/ubuntu/saucy/groundhog/saucy

« back to all changes in this revision

Viewing changes to src/highscore_dialog.cc

  • Committer: Bazaar Package Importer
  • Author(s): Stephen M Moraco
  • Date: 2003-06-18 19:46:15 UTC
  • mto: (2.1.1 warty)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20030618194615-sztk57bkfjhmctl4
Tags: upstream-1.4
ImportĀ upstreamĀ versionĀ 1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Groundhog -- a simple logic game
2
 
 * Copyright (C) 1998-2001 Maurits Rijk
 
2
 * Copyright (C) 1998-2002 Maurits Rijk
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or modify
5
5
 * it under the terms of the GNU General Public License as published by
24
24
{
25
25
   _notebook = gtk_notebook_new();
26
26
   gtk_container_border_width(GTK_CONTAINER(_notebook), 10);
27
 
   gtk_notebook_set_tab_pos (GTK_NOTEBOOK(_notebook), GTK_POS_TOP);
28
27
   gtk_box_pack_start(GTK_BOX(GTK_DIALOG(_window)->vbox), _notebook, TRUE, 
29
28
                      TRUE, 10);
30
29
 
31
 
   _beginner = new HighScoreTab(_notebook, _("Beginner"));
32
 
   _intermediate = new HighScoreTab(_notebook, _("Intermediate"));
33
 
   _expert = new HighScoreTab(_notebook, _("Expert"));
34
 
 
35
 
   gtk_widget_show(_notebook);
 
30
   _beginner = new HighScoreTab(_notebook, _("_Beginner"));
 
31
   _intermediate = new HighScoreTab(_notebook, _("_Intermediate"));
 
32
   _expert = new HighScoreTab(_notebook, _("_Expert"));
36
33
}
37
34
 
38
35
HighScoreDialog::~HighScoreDialog()