|
From: <sl...@us...> - 2003-11-23 18:19:13
|
Update of /cvsroot/aedgui/aedGUI/src
In directory sc8-pr-cvs1:/tmp/cvs-serv20873/src
Modified Files:
aedApp.cpp aedFont.cpp aedWidget.cpp
Log Message:
const const is illegal syntax for gcc
Index: aedApp.cpp
===================================================================
RCS file: /cvsroot/aedgui/aedGUI/src/aedApp.cpp,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** aedApp.cpp 6 Nov 2003 18:46:35 -0000 1.29
--- aedApp.cpp 23 Nov 2003 18:19:09 -0000 1.30
***************
*** 257,261 ****
aedTheme *
! aedApp::getDefaultTheme() const const
{
return m_Themes[0].theme;
--- 257,261 ----
aedTheme *
! aedApp::getDefaultTheme() const
{
return m_Themes[0].theme;
***************
*** 263,267 ****
aedLog *
! aedApp::getLog() const const
{
return pLog;
--- 263,267 ----
aedLog *
! aedApp::getLog() const
{
return pLog;
Index: aedFont.cpp
===================================================================
RCS file: /cvsroot/aedgui/aedGUI/src/aedFont.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** aedFont.cpp 6 Nov 2003 18:46:36 -0000 1.14
--- aedFont.cpp 23 Nov 2003 18:19:09 -0000 1.15
***************
*** 43,47 ****
int
! aedFont::getStyle() const const
{
// The AED_FONT styles are the same as TTF styles
--- 43,47 ----
int
! aedFont::getStyle() const
{
// The AED_FONT styles are the same as TTF styles
***************
*** 58,62 ****
int
! aedFont::getHeight() const const
{
return TTF_FontHeight(data);
--- 58,62 ----
int
! aedFont::getHeight() const
{
return TTF_FontHeight(data);
***************
*** 64,68 ****
int
! aedFont::getAscent() const const
{
return TTF_FontAscent(data);
--- 64,68 ----
int
! aedFont::getAscent() const
{
return TTF_FontAscent(data);
***************
*** 70,74 ****
int
! aedFont::getDescent() const const
{
return TTF_FontDescent(data);
--- 70,74 ----
int
! aedFont::getDescent() const
{
return TTF_FontDescent(data);
***************
*** 76,80 ****
int
! aedFont::getLineSkip() const const
{
return TTF_FontLineSkip(data);
--- 76,80 ----
int
! aedFont::getLineSkip() const
{
return TTF_FontLineSkip(data);
Index: aedWidget.cpp
===================================================================
RCS file: /cvsroot/aedgui/aedGUI/src/aedWidget.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** aedWidget.cpp 6 Nov 2003 18:46:37 -0000 1.7
--- aedWidget.cpp 23 Nov 2003 18:19:10 -0000 1.8
***************
*** 346,350 ****
bool
! aedWidget::hasFocus(void) const const
{
return pApp->getFocusWidget() == this;
--- 346,350 ----
bool
! aedWidget::hasFocus(void) const
{
return pApp->getFocusWidget() == this;
|