From 2bc37efa2a81981e200b7b4ec964fd7938b05530 Mon Sep 17 00:00:00 2001 From: markgrebe Date: Fri, 10 Mar 2006 01:20:04 +0000 Subject: [PATCH] Fixed typos in Mac conditional compile code. myRelPrevButton was myRel_PrevButton. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1034 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/gui/LauncherDialog.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stella/src/gui/LauncherDialog.cxx b/stella/src/gui/LauncherDialog.cxx index 4484feb1c..20b3e209c 100644 --- a/stella/src/gui/LauncherDialog.cxx +++ b/stella/src/gui/LauncherDialog.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: LauncherDialog.cxx,v 1.46 2006-03-10 00:29:46 stephena Exp $ +// $Id: LauncherDialog.cxx,v 1.47 2006-03-10 01:20:04 markgrebe Exp $ // // Based on code from ScummVM - Scumm Interpreter // Copyright (C) 2002-2004 The ScummVM project @@ -131,10 +131,10 @@ LauncherDialog::LauncherDialog(OSystem* osystem, DialogContainer* parent, myOptionsButton->setEditable(true); wid.push_back(myOptionsButton); xpos += bwidth + 8; - myRel_PrevButton = new ButtonWidget(this, font, xpos, ypos, bwidth, bheight, + myRelPrevButton = new ButtonWidget(this, font, xpos, ypos, bwidth, bheight, "", kRelPrevCmd, 0); - myRel_PrevButton->setEditable(true); - wid.push_back(myRel_PrevButton); + myRelPrevButton->setEditable(true); + wid.push_back(myRelPrevButton); xpos += bwidth + 8; myStartButton = new ButtonWidget(this, font, xpos, ypos, bwidth, bheight, "Play", kStartCmd, 0);