Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
magicseteditor
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
magicseteditor
Commits
030c6b49
Commit
030c6b49
authored
Jan 30, 2007
by
coppro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed some changes I made to attempt to debug the Linux version and forgot to take out.
parent
5abb38f0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile
Makefile
+2
-2
src/gui/welcome_window.cpp
src/gui/welcome_window.cpp
+1
-2
No files found.
Makefile
View file @
030c6b49
...
...
@@ -201,12 +201,12 @@ AUTOMAKE = ${SHELL} /home/coppro/C++/MSE/trunk/missing --run automake-1.9
AWK
=
mawk
CC
=
gcc
CCDEPMODE
=
depmode
=
gcc3
CFLAGS
=
-g
3
-O0
CFLAGS
=
-g
-O2
CPP
=
gcc
-E
CPPFLAGS
=
CXX
=
g++
CXXDEPMODE
=
depmode
=
gcc3
CXXFLAGS
=
-g
3
-O0
CXXFLAGS
=
-g
-O2
CYGPATH_W
=
echo
DEFS
=
-DHAVE_CONFIG_H
DEPDIR
=
.deps
...
...
src/gui/welcome_window.cpp
View file @
030c6b49
...
...
@@ -114,11 +114,10 @@ HoverButtonExt::HoverButtonExt(Window* parent, int id, const wxImage& icon, cons
{}
void
HoverButtonExt
::
draw
(
DC
&
dc
)
{
handle_error
(
Error
(
_
(
"HEYA"
)));
// draw button
HoverButton
::
draw
(
dc
);
// 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
dc
.
SetTextForeground
(
*
wxBLACK
);
dc
.
SetFont
(
font_large
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment