Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 94355 Details for
Bug 139435
media-video/jahshaka-2.0_rc1 doesn't compile with gcc-4.x
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
jahshaka-2.0_rc1-gcc41.patch
jahshaka-2.0_rc1-gcc41.patch (text/plain), 6.96 KB, created by
Andrei Slavoiu
on 2006-08-15 15:32:44 UTC
(
hide
)
Description:
jahshaka-2.0_rc1-gcc41.patch
Filename:
MIME Type:
Creator:
Andrei Slavoiu
Created:
2006-08-15 15:32:44 UTC
Size:
6.96 KB
patch
obsolete
>diff -rNud jahshaka-old/source/Jahshaka/JahCore/jahobjects/coreeffects.h jahshaka/source/Jahshaka/JahCore/jahobjects/coreeffects.h >--- jahshaka-old/source/Jahshaka/JahCore/jahobjects/coreeffects.h 2006-08-15 21:07:56.000000000 +0300 >+++ jahshaka/source/Jahshaka/JahCore/jahobjects/coreeffects.h 2006-08-15 21:12:36.000000000 +0300 >@@ -54,7 +54,7 @@ > NOT_A_CATEGORY > }; > >- static std::string& EffectInfo::getEffectCategoryName(EFFECT_CATEGORY category); >+ static std::string& getEffectCategoryName(EFFECT_CATEGORY category); > > // Should replace the FxCategory above > enum EFFECT_TYPE >@@ -96,7 +96,7 @@ > NOT_A_TYPE > }; > >- static std::string& EffectInfo::getEffectTypeName(EFFECT_TYPE type); >+ static std::string& getEffectTypeName(EFFECT_TYPE type); > > protected: > EFFECT_TYPE m_type; >diff -rNud jahshaka-old/source/Jahshaka/JahCore/jahobjects/coreobject.h jahshaka/source/Jahshaka/JahCore/jahobjects/coreobject.h >--- jahshaka-old/source/Jahshaka/JahCore/jahobjects/coreobject.h 2006-08-15 21:34:01.000000000 +0300 >+++ jahshaka/source/Jahshaka/JahCore/jahobjects/coreobject.h 2006-08-15 21:34:43.000000000 +0300 >@@ -42,8 +42,8 @@ > bool isChromaKeyLayer() { return m_is_chroma_key_layer; } > void setCategory(ObjectCategory::TYPE category) { objtype = category; } > ObjectCategory::TYPE getCategory() { return objtype; } >- EffectInfo::EFFECT_CATEGORY JahLayer::getEffectCategory(); >- EffectInfo::EFFECT_CATEGORY JahLayer::getPluginEffectCategory(); >+ EffectInfo::EFFECT_CATEGORY getEffectCategory(); >+ EffectInfo::EFFECT_CATEGORY getPluginEffectCategory(); > > void setIsChromaKeyLayer(bool flag); > int getEnabledEffectCount(); >diff -rNud jahshaka-old/source/Jahshaka/JahCore/jahworld/glworld.h jahshaka/source/Jahshaka/JahCore/jahworld/glworld.h >--- jahshaka-old/source/Jahshaka/JahCore/jahworld/glworld.h 2006-08-15 21:46:05.000000000 +0300 >+++ jahshaka/source/Jahshaka/JahCore/jahworld/glworld.h 2006-08-15 21:47:18.000000000 +0300 >@@ -163,8 +163,8 @@ > > ////////////////////////////////////////////////////////////// > //for xml scene save >- void GLWorld::SaveAll( std::string const & a_save_filename, bool const a_status ); >- void GLWorld::SaveAllData( std::fstream & ai_fstream ); >+ void SaveAll( std::string const & a_save_filename, bool const a_status ); >+ void SaveAllData( std::fstream & ai_fstream ); > void saveSceneFile( std::string const & a_save_filename, bool const a_status = 0 ); > void saveAllLayers( std::fstream & ai_strstream ); > void SaveNodes( std::fstream & ai_fstream , JahLayer* jah_layer ); >diff -rNud jahshaka-old/source/Jahshaka/JahWidgets/interfaceobjs/widget.h jahshaka/source/Jahshaka/JahWidgets/interfaceobjs/widget.h >--- jahshaka-old/source/Jahshaka/JahWidgets/interfaceobjs/widget.h 2006-08-15 21:57:54.000000000 +0300 >+++ jahshaka/source/Jahshaka/JahWidgets/interfaceobjs/widget.h 2006-08-15 21:58:53.000000000 +0300 >@@ -53,7 +53,7 @@ > // Lifted from QToolButton > // only sizes the size of the content, not any button border. > // >-QSize JahToolButton::sizeHint() const >+QSize sizeHint() const > { > > int w = 0, h = 0; >diff -rNud jahshaka-old/source/Jahshaka/JahModules/colorize/color.h jahshaka/source/Jahshaka/JahModules/colorize/color.h >--- jahshaka-old/source/Jahshaka/JahModules/colorize/color.h 2006-08-15 22:14:55.000000000 +0300 >+++ jahshaka/source/Jahshaka/JahModules/colorize/color.h 2006-08-15 22:16:03.000000000 +0300 >@@ -51,7 +51,7 @@ > > }; > >-GLColorize::~GLColorize() { } >+~GLColorize() { } > > //object and variable initialization routines > void initializeVariables(void); >diff -rNud jahshaka-old/source/Jahshaka/JahModules/keyer/keyer.h jahshaka/source/Jahshaka/JahModules/keyer/keyer.h >--- jahshaka-old/source/Jahshaka/JahModules/keyer/keyer.h 2006-08-15 22:14:55.000000000 +0300 >+++ jahshaka/source/Jahshaka/JahModules/keyer/keyer.h 2006-08-15 22:16:58.000000000 +0300 >@@ -52,7 +52,7 @@ > void setHsvRange(float4& value) { m_hsv_range = value; } > float4& getRgbaRange() { return m_rgba_range; } > void setRgbaRange(float4& value) { m_rgba_range = value; } >- void GLKeyer::setRgbaValues(); >+ void setRgbaValues(); > > KeyerColorWidget* getKeyerColorWidget() { return m_keyer_color_widget; } > void setKeyerColorWidget(KeyerColorWidget* widget) { m_keyer_color_widget = widget; } >@@ -71,7 +71,7 @@ > > }; > >-GLKeyer::~GLKeyer() { } >+~GLKeyer() { } > > //object and variable initialization routines > void initializeVariables(void); >diff -rNud jahshaka-old/source/Jahshaka/JahModules/animation/anime.h jahshaka/source/Jahshaka/JahModules/animation/anime.h >--- jahshaka-old/source/Jahshaka/JahModules/animation/anime.h 2006-08-15 22:35:43.000000000 +0300 >+++ jahshaka/source/Jahshaka/JahModules/animation/anime.h 2006-08-15 22:36:53.000000000 +0300 >@@ -38,7 +38,7 @@ > initializeObjects(); > }; > >- GLAnime::~GLAnime() { } >+ ~GLAnime() { } > > void buildInterface( QHBox* qtinterface); > void buildInterfaceMenus( QHBox* leftcontroller, QHBox* rightcontroller ); >diff -rNud jahshaka-old/source/Jahshaka/JahModules/effect/effect.h jahshaka/source/Jahshaka/JahModules/effect/effect.h >--- jahshaka-old/source/Jahshaka/JahModules/effect/effect.h 2006-08-15 22:58:36.000000000 +0300 >+++ jahshaka/source/Jahshaka/JahModules/effect/effect.h 2006-08-15 22:59:22.000000000 +0300 >@@ -51,7 +51,7 @@ > initializeObjects(); > }; > >-GLEffect::~GLEffect() { } >+~GLEffect() { } > > //object and variable initialization routines > void initializeVariables(void); >diff -rNud jahshaka-old/source/Jahshaka/JahModules/painter/paint.h jahshaka/source/Jahshaka/JahModules/painter/paint.h >--- jahshaka-old/source/Jahshaka/JahModules/painter/paint.h 2006-08-15 23:25:15.000000000 +0300 >+++ jahshaka/source/Jahshaka/JahModules/painter/paint.h 2006-08-15 23:26:02.000000000 +0300 >@@ -36,7 +36,7 @@ > initializeObjects(); > }; > >- GLPaint::~GLPaint() { } >+ ~GLPaint() { } > > > void buildInterface( QHBox* qtinterface); >diff -rNud jahshaka-old/source/Jahshaka/JahModules/text/character.h jahshaka/source/Jahshaka/JahModules/text/character.h >--- jahshaka-old/source/Jahshaka/JahModules/text/character.h 2006-08-16 00:23:09.000000000 +0300 >+++ jahshaka/source/Jahshaka/JahModules/text/character.h 2006-08-16 00:24:01.000000000 +0300 >@@ -30,7 +30,7 @@ > initializeObjects(); > }; > >- GLChar::~GLChar() { } >+ ~GLChar() { } > > void buildInterface( QHBox* qtinterface); > void buildInterfaceMenus( QHBox* leftcontroller, QHBox* rightcontroller ); >diff -rNud jahshaka-old/source/Jahshaka/JahModules/tracker/tracker.h jahshaka/source/Jahshaka/JahModules/tracker/tracker.h >--- jahshaka-old/source/Jahshaka/JahModules/tracker/tracker.h 2006-08-16 00:49:04.000000000 +0300 >+++ jahshaka/source/Jahshaka/JahModules/tracker/tracker.h 2006-08-16 00:49:58.000000000 +0300 >@@ -113,7 +113,7 @@ > }; > > >- GLTracker::~GLTracker() { } >+ ~GLTracker() { } > > >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 139435
:
91808
|
91809
|
92221
| 94355