By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 638
Collapse All | Expand All

(-)kdegames/ktuberling/toplevel.cpp.ORI (-1 / +1 lines)
Lines 189-195 Link Here
189
// Load the layouts file
189
// Load the layouts file
190
bool TopLevel::loadLayout(TQDomDocument &layoutDocument)
190
bool TopLevel::loadLayout(TQDomDocument &layoutDocument)
191
{
191
{
192
  TQFile layoutFile(TQFile::encodeName(locate("data", "ktuberling/pics/tqlayout.xml")));
192
  TQFile layoutFile(TQFile::encodeName(locate("data", "ktuberling/pics/layout.xml")));
193
  if (!layoutFile.open(IO_ReadOnly))
193
  if (!layoutFile.open(IO_ReadOnly))
194
     return false;
194
     return false;
195
195
(-)kdegames/ktuberling/pics/layout.i18n (-1 / +1 lines)
Lines 1-6 Link Here
1
/* -------------------------------------------------------------
1
/* -------------------------------------------------------------
2
   KDE Tuberling
2
   KDE Tuberling
3
   List of strings in tqlayout.xml that are translatable
3
   List of strings in layout.xml that are translatable
4
   mailto:e.bischoff@noos.fr
4
   mailto:e.bischoff@noos.fr
5
 ------------------------------------------------------------- */
5
 ------------------------------------------------------------- */
6
6
(-)kdegames/ktuberling/pics/layout.xml (-1 / +1 lines)
Lines 5-11 Link Here
5
5
6
   Modify this file if you want to add new playgrounds, new sounds,
6
   Modify this file if you want to add new playgrounds, new sounds,
7
   or modify existing ones. If you do that, don't forget to update:
7
   or modify existing ones. If you do that, don't forget to update:
8
   - tqlayout.i18n (strings that might be translated)
8
   - layout.i18n (strings that might be translated)
9
   - ktuberlingui.rc (actions associated with menu items).
9
   - ktuberlingui.rc (actions associated with menu items).
10
-->
10
-->
11
11
(-)kdegames/ktuberling/playground.cpp (-1 / +1 lines)
Lines 506-512 Link Here
506
  exit(-1);
506
  exit(-1);
507
}
507
}
508
508
509
// Set up play ground's tqgeometry
509
// Set up play ground's geometry
510
void PlayGround::setupGeometry()
510
void PlayGround::setupGeometry()
511
{
511
{
512
  int width = gameboard.width() + 2 * XMARGIN,
512
  int width = gameboard.width() + 2 * XMARGIN,

Return to bug 638