Re: Experimental class in baloo

2018-03-22 Thread Ivan Čukić
p.s. It is common for the pimpl classes in Qt and KF5 to be named ClassName::Private or ClassNamePrivate and for the pointer to be named `d` - not ClassNameImpl and m_pimpl. p.p.s. I've seen that the DatabaseSanitizer is exported in libKF5BalooEngine.so.5 - if this is a library meant for 3rd party

Re: Experimental class in baloo

2018-03-22 Thread Ivan Čukić
Hi, Is this a class that is supposed to be available in the library (.so file) - to be used in applications that use baloo, or is it only a class in the backend? If it is the second case (which I guess it is since I don't see the symbols exported in libKF5Baloo.so), then this should not be a prob

Re: Experimental class in baloo

2018-03-21 Thread Michael Heidelbach
On 21.03.2018 01:16, David Edmundson wrote: On Tue, Mar 20, 2018 at 9:43 AM, Michael Heidelbach > wrote: Hi! I've recently introduced a new class for baloo . It is m

Re: Experimental class in baloo

2018-03-20 Thread David Edmundson
On Tue, Mar 20, 2018 at 9:43 AM, Michael Heidelbach wrote: > Hi! > > I've recently introduced a new class for baloo > . > It is mainly for debugging. As it is accompanied with a command line tool > it may be usefu

Experimental class in baloo

2018-03-20 Thread Michael Heidelbach
Hi! I've recently introduced a new class for baloo . It is mainly for debugging. As it is accompanied with a command line tool it may be useful for users too. It is still in an experimental state and it's lik