Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 48948
Collapse All | Expand All

(-)gnome-games-2.6.2/gnometris/blockops.cpp (-1 / +1 lines)
Lines 33-39 Link Here
33
  			"y", (double) y * BLOCK_SIZE,
33
  			"y", (double) y * BLOCK_SIZE,
34
			"width", (double) BLOCK_SIZE,
34
			"width", (double) BLOCK_SIZE,
35
			"height", (double) BLOCK_SIZE,
35
			"height", (double) BLOCK_SIZE,
36
  			0);
36
  			NULL);
37
37
38
	return it;
38
	return it;
39
}
39
}
(-)gnome-games-2.6.2/gnometris/field.cpp (-2 / +2 lines)
Lines 56-62 Link Here
56
  			"y", (double) 0,
56
  			"y", (double) 0,
57
			"width", (double) COLUMNS * BLOCK_SIZE,
57
			"width", (double) COLUMNS * BLOCK_SIZE,
58
			"height", (double) LINES * BLOCK_SIZE,
58
			"height", (double) LINES * BLOCK_SIZE,
59
  			0);
59
  			NULL);
60
		else
60
		else
61
			bg = gnome_canvas_item_new(
61
			bg = gnome_canvas_item_new(
62
  			gnome_canvas_root(GNOME_CANVAS(w)),
62
  			gnome_canvas_root(GNOME_CANVAS(w)),
Lines 68-72 Link Here
68
				"fill_color", "black",
68
				"fill_color", "black",
69
				"outline_color", "black",
69
				"outline_color", "black",
70
				"width_units", 1.0,
70
				"width_units", 1.0,
71
  			0);
71
  			NULL);
72
}
72
}
(-)gnome-games-2.6.2/gnometris/tetris.cpp (-2 / +2 lines)
Lines 202-208 Link Here
202
                                              "y", LINES*BLOCK_SIZE/2.0,
202
                                              "y", LINES*BLOCK_SIZE/2.0,
203
                                              "text", _("Paused"),
203
                                              "text", _("Paused"),
204
                                              "size_points", 36.0,
204
                                              "size_points", 36.0,
205
                                              0
205
                                              NULL
206
                                              );
206
                                              );
207
207
208
	/* Since gnome_canvas doesn't support setting the size of text in
208
	/* Since gnome_canvas doesn't support setting the size of text in
Lines 230-236 Link Here
230
                                                 "y", LINES*BLOCK_SIZE/2.0,
230
                                                 "y", LINES*BLOCK_SIZE/2.0,
231
                                                 "text", _("Game Over"),
231
                                                 "text", _("Game Over"),
232
                                                 "size_points", 36.0,
232
                                                 "size_points", 36.0,
233
                                                 0
233
                                                 NULL
234
                                                 );
234
                                                 );
235
235
236
	gnome_canvas_item_get_bounds (gameoverMessage, &x1, &y1, &x2, &y2);
236
	gnome_canvas_item_get_bounds (gameoverMessage, &x1, &y1, &x2, &y2);

Return to bug 48948