Commit 030c6b49 authored by coppro's avatar coppro

Removed some changes I made to attempt to debug the Linux version and forgot to take out.

parent 5abb38f0
...@@ -201,12 +201,12 @@ AUTOMAKE = ${SHELL} /home/coppro/C++/MSE/trunk/missing --run automake-1.9 ...@@ -201,12 +201,12 @@ AUTOMAKE = ${SHELL} /home/coppro/C++/MSE/trunk/missing --run automake-1.9
AWK = mawk AWK = mawk
CC = gcc CC = gcc
CCDEPMODE = depmode=gcc3 CCDEPMODE = depmode=gcc3
CFLAGS = -g3 -O0 CFLAGS = -g -O2
CPP = gcc -E CPP = gcc -E
CPPFLAGS = CPPFLAGS =
CXX = g++ CXX = g++
CXXDEPMODE = depmode=gcc3 CXXDEPMODE = depmode=gcc3
CXXFLAGS = -g3 -O0 CXXFLAGS = -g -O2
CYGPATH_W = echo CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps DEPDIR = .deps
......
...@@ -114,11 +114,10 @@ HoverButtonExt::HoverButtonExt(Window* parent, int id, const wxImage& icon, cons ...@@ -114,11 +114,10 @@ HoverButtonExt::HoverButtonExt(Window* parent, int id, const wxImage& icon, cons
{} {}
void HoverButtonExt::draw(DC& dc) { void HoverButtonExt::draw(DC& dc) {
handle_error(Error(_("HEYA")));
// draw button // draw button
HoverButton::draw(dc); HoverButton::draw(dc);
// icon // icon
if (icon.Ok()) dc.DrawBitmap(icon, 7, 7); else handle_error(Error(_("Error drawing button bitmaps"))); if (icon.Ok()) dc.DrawBitmap(icon, 7, 7);
// text // text
dc.SetTextForeground(*wxBLACK); dc.SetTextForeground(*wxBLACK);
dc.SetFont(font_large); dc.SetFont(font_large);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment