[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    Re: branches/KDE/4.4/kdebase/apps/konqueror/kttsplugin
From:       Michael Seiwert <michael.seiwert () gmx ! de>
Date:       2010-01-08 16:30:56
Message-ID: 201001081730.56776.michael.seiwert () gmx ! de
[Download RAW message or body]

There still seems to be an error:

/home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.cpp: 
In member function 'void KHTMLPluginKTTSD::slotReadOut()':
/home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.cpp:116: 
error: 'KWebKitPart' was not declared in this scope
/home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.cpp:116: 
error: 'webkitPart' was not declared in this scope
/home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.cpp:116: 
error: expected type-specifier before 'KWebKitPart'
/home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.cpp:116: 
error: expected '>' before 'KWebKitPart'
/home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.cpp:116: 
error: expected '(' before 'KWebKitPart'
/home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.cpp:116: 
error: expected primary-expression before '>' token
/home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.cpp:116: 
error: expected ')' before ';' token
make[2]: *** 
[apps/konqueror/kttsplugin/CMakeFiles/khtmlkttsdplugin.dir/khtmlkttsd.o] Error 
1
make[1]: *** [apps/konqueror/kttsplugin/CMakeFiles/khtmlkttsdplugin.dir/all] 
Error 2
make: *** [all] Error 2


Best 

Michael


On Friday 08 January 2010 17:06:11 Dawit A. wrote:
> Fixed. The include should be "kwebkitpart.h" not "webkitpart.h" anymore...
> 
> On Friday 08 January 2010 03:08:50 you wrote:
> > Hi,
> > 
> > I'm getting the following error on compiling a fresh checkout of the
> > 
> >  kdebase 4.4 branch. Any idea ?
> > 
> > [ 33%] Building CXX object
> > apps/konqueror/kttsplugin/CMakeFiles/khtmlkttsdplugin.dir/khtmlkttsd.o
> > /home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.
> > cp p: In member function 'void KHTMLPluginKTTSD::slotReadOut()':
> > /home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.
> > cp p:116: error: 'KWebKitPart' was not declared in this scope
> > /home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.
> > cp p:116: error: 'webkitPart' was not declared in this scope
> > /home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.
> > cp p:116: error: expected type-specifier before 'KWebKitPart'
> > /home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.
> > cp p:116: error: expected '>' before 'KWebKitPart'
> > /home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.
> > cp p:116: error: expected '(' before 'KWebKitPart'
> > /home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.
> > cp p:116: error: expected primary-expression before '>' token
> > /home/mseiwert/src/svn/kde4/kdebase/apps/konqueror/kttsplugin/khtmlkttsd.
> > cp p:116: error: expected ')' before ';' token
> > make[2]: ***
> > [apps/konqueror/kttsplugin/CMakeFiles/khtmlkttsdplugin.dir/khtmlkttsd.o]
> > 
> >  Error 1
> > 
> > make[1]: ***
> > 
> >  [apps/konqueror/kttsplugin/CMakeFiles/khtmlkttsdplugin.dir/all] Error 2
> > 
> > make: *** [all] Error 2
> > makeobj[0]: Leaving directory `/home/mseiwert/kde/build/kdebase'
> > 
> > 
> > Best,
> > 
> > Michael
> > 
> > On Thursday 07 January 2010 18:58:00 Dawit Alemayehu wrote:
> > > SVN commit 1071196 by adawit:
> > > 
> > > Fix the detection for the presence of the webkit part
> > > 
> > >  M  +5 -5      CMakeLists.txt
> > > 
> > > --- branches/KDE/4.4/kdebase/apps/konqueror/kttsplugin/CMakeLists.txt
> > > #1071195:1071196 @@ -5,12 +5,12 @@
> > > 
> > >  include(MacroOptionalDependPackage)
> > > 
> > > -MACRO_OPTIONAL_DEPEND_PACKAGE(KWebKitPart "kwebkitpart")
> > > -if(DEPEND_PACKAGE_KWebKitPart)
> > > -        macro_optional_find_package(KWebKitPart QUIET)
> > > -else(DEPEND_PACKAGE_KWebKitPart)
> > > +MACRO_OPTIONAL_DEPEND_PACKAGE(WebKitPart "kwebkitpart")
> > > +if(DEPEND_PACKAGE_WebKitPart)
> > > +        macro_optional_find_package(WebKitPart QUIET)
> > > +else(DEPEND_PACKAGE_WebKitPart)
> > > 
> > >          set(WEBKITPART_FOUND FALSE)
> > > 
> > > -endif(DEPEND_PACKAGE_KWebKitPart)
> > > +endif(DEPEND_PACKAGE_WebKitPart)
> > > 
> > >  if(WEBKITPART_FOUND)
> > >  
> > >      set(HAVE_WEBKITPART true)
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic