cy can change. The -iterations counter helps
if the result is too small.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Principal Engineer - Intel Platform & System Engineering
e.
Specifically for spaces, maybe you should consider QString::trimmed(), which
can access the unicode tables directly and thus avoids the overhead of a
function call.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Principal Engineer - Intel Platform & System Engineering
run both, and settle for the one that works?
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Principal Engineer - Intel DCAI Platform & System Engineering
compatible, you could also simply
redistribute the XDG mime database with your application, overwriting the
limited Apache Tika database Qt needs to supply. It compresses very well with
rcc.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Principal Engineer - Intel DCAI Platform & System Engineering
> directory in the process before deleting the QTemporaryDir instance.
True.
But there's also a converse case: if you renamed the current directory, the
old code had failed, but now it works.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Principal Engineer - Intel DCAI Fleet Systems Engineering
ng, isn't this kind of change forbidden in minor releases?
The path is correct at the point it is issued, referring to the same
directory. The fact that it is in a different form was not expected to be a
breaking change.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Pri
On Thursday 4 April 2024 04:26:57 PDT Sune Vuorela wrote:
> 'does it use autotools?'
The outcome of this is "please migrate off Autotools".
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Principal Engineer - Intel DCAI Cloud Engineering
> fine, but then I wonder about the includes:
You have to force the recreation of the includes dir. Just:
touch .git
Before running configure.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel DCAI Cloud Engineering
f memory.
For the other ones, the question is what they're using QSharedMemory for (how
many processes, what's the ownership model).
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel DCAI Cloud Engineering
See
https://community.kde.org/
Qt5PatchCollection#How_do_I_get_this_integrated_in_my_distribution?
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel DCAI Cloud Engineering
tra symbols are exported using the Q_AUTOTEST_EXPORT
macro. This allows developers and CI systems to enable the extra API without
needing to affect users.
The CI also tests non-"internal build" builds, so the tests must check whether
they are in that mode before using a autotest-export
ly a Heisenbug and difficult to debug.
It might also be a latent issue in Qt 5 that got exposed by faster
functionality somewhere in QtCore, because there have been no changes to
QtDBus to account for this (it has barely received any changes since 5.6).
Someone needs to debug it and I don't hav
1.20 if you want to build this version of kwayland.
> Thank you for kdesrc, there are a few quirks but in general it is great we
> can try new stuff in a stable system !
That's not always possible. This is such a case. You'll need an upgrade.
--
Thiago Macieira - thiago (AT)
function wasn't a requirement before, so more
like Cat A.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel DPG Cloud Engineering
has come up for us yet. For one, the mailing list thread linked in
the QUIP didn't address it.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel DPG Cloud Engineering
teArray with QLatin1String (or Qt6's QByteArrayView or
QAnyStringView or any such other combination) because it makes calling with a
character literal ambiguous. But you can if one of them is a weak overload.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
S
it's a Linux device, that was already the case.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel DPG Cloud Engineering
should be have been doing all along.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel DPG Cloud Engineering
unctioning KDE Plasma build is all the patches that exist at the moment
you ask that question.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel DPG Cloud Engineering
ow, on [1])
> Within what I could grasp, I filed an issue:
> https://gitlab.com/sane-project/backends/-/issues/582
>
> I fear fixing this is far beyond my programming skills. I hardly understand
> what's going on here at all ...
I'll add some comments.
[1] https://coder
> for older environments. Although it may be worth it to mess with this stuff
> to learn more about process handling, threads and forks and so on.
"If you write buggy code, the application may misbehave" is not documentation.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel DPG Cloud Engineering
pping a file before fork(), as that gets shared between parent and child. A
memfd would be ideal, but if that fails, you can use a regular QTemporaryFile.
On Linux, QSharedMemory is just a memory-mapped file on a tmpfs (/dev/shm)
after all, only it's hiding behind two or three layers of abstra
On Friday, 4 March 2022 09:02:37 PST Thiago Macieira wrote:
> > I uploaded the traces here:
> > https://l3u.de/tmp/strace_brscan.txt.xz
> > https://l3u.de/tmp/strace_plustek.txt.xz
> >
> > Thanks again for all help!
>
> I'll take a look. Let's s
sed
QProcess and skip using the pidfd feature:
if (typeid(*q) != typeid(QProcess))
ffdflags |= FFD_USE_FORK;
https://code.qt.io/cgit/qt/qtbase.git/tree/src/corelib/io/qprocess_unix.cpp?
h=5.15#n462
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel DPG Cloud Engineering
side from deliveries like above, it came from elsewhere.
> Apart from that, the scanner in question actually does use the plustek
> backend! I fear there's no way to fix this in my code?!
Fix the problem where the problem is.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel DPG Cloud Engineering
return exeFilePath;
}
return program;
The issue is handling findExecutable() not finding anything. Instead of
refusing to run, we return program; which is the name that you had passed, and
that goes straight into execve().
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel DPG Cloud Engineering
On Tuesday, 3 August 2021 05:29:22 PDT Colin Williams wrote:
> I don't have a clue regarding 'reduce_relocations'. Is there a way to
> disable it and would it make sense to do so?
Check the config.log
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
font size in all profiles in the same place. But
it looks like it's too well hidden.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel DPG Cloud Engineering
ate an a{sv}.
Something is broken. You'll need to debug.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel DPG Cloud Engineering
or how many requests per
second it is allowed to make. This happens for example to the rclone API key
to use Microsoft One Drive.
Please reach out to the services in question and advise them that your
software is open source and therefore cannot hide the key at all, and present
these tw
f
the Qt source code.
Trolltech did use to hire talented developers from the KDE community, which is
how quite a few of us ended up there, like Matthias Ettrich (KDE's founder),
Lars Knoll (khtml's original author), Simon Hausmann, Roberto Raggi and Harald
Fernengel (from KDeve
irst, you should always review what you've sent for review anyway and you can
notice you pushed something incomplete. At that point don't create the review
request or write that it isn't yet ready for review.
Second, your reviewers should notice it's incomplete and won't a
::applicationProxy?
Listen to the org.kde.KIO.Scheduler.reparseSlaveConfiguration D-Bus signal.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel System Software Products
rivileged user, that's better. That can be as a result of dropping privileges
with setuid() or capset() after acquiring the resource you need.
If you do that, connect to the bus AFTER you've dropped privileges.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
to turn those off.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel System Software Products
On Wednesday, 12 June 2019 08:53:50 PDT Elias Mårtenson wrote:
> Thank you. That works beautifully. I do wonder, however, if it's
> deprecated, what is meant to replace it?
Properly? Wayland.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Archit
DBus.Properties interface,
on that object.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
s split up)!
Which is exactly why 5.11.3 (released today) should be picked. It contains all
fixes that 5.9.7 contains, whereas 5.10.1 does not. Moving from 5.9.7 to
5.10.1 means regressing all those fixes.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
On Thursday, 27 September 2018 12:30:30 PDT Elvis Angelaccio wrote:
> is it possible to fix Qt instead?
No, the C++ language needs to be fixed. Search for "operator auto" for
proposals.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect
On Wednesday, 19 September 2018 15:20:27 PDT Christoph Feck wrote:
> On 20.09.2018 00:03, Albert Astals Cid wrote:
> > El divendres, 14 de setembre de 2018, a les 18:04:59 CEST, Thiago Macieira
va escriure:
> >> On Wednesday, 12 September 2018 04:17:35 PDT Harald Sitter wrote:
e.
> Obviously that's not very integrated in plasma.
The correct way is to configure your system properly. Qt will use libproxy and
will get the settings.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
t;commit(); ?
It should definitely NOT be this.
Use either Q_ASSERT or the if, not both.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
lve it?
The interesting part in the message was replaced by . . .
Bring the information back and, if necessary, install debug symbols for the
libraries in that backtrace.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
at's not including libX11, libGL, libGLES, libGLU, libICE, libSM...
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
On segunda-feira, 20 de novembro de 2017 07:58:06 PST Reindl Harald wrote:
> hopefully this means also that filenames in the future don't contain
> uppercase chars
Why would we want that?
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect -
where I should look to fix this?
That's caused by session management, but that's all I know. If you don't have
code to handle session saving and restoring, add it to your program.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
> since 5.6 )
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
On quarta-feira, 22 de março de 2017 00:58:20 PDT Jean-Baptiste Kempf wrote:
> Hello,
>
> On Wed, 22 Mar 2017, at 08:03, Thiago Macieira wrote:
> > problem with VLC, but I suspect it would be the exact same issue.
>
> The issue with VLC is that you want to have native size (
try to also force other applications to use configured
> settings when starting a KDE workspace (Firefox? Google Chrome? GTK?
> Java?)
Set GDK_SCALE and CLUTTER_SCALE, that's all. I don't know which of those
controls Firefox and Chrome, but they are properly scaled up in
o merge them ?
That's the ntire point: *no* one is able to merge GitHub Pull Requests in most
of the repositories. That's by policy, since the submission should go through
Phabricator instead.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
On segunda-feira, 6 de março de 2017 17:31:31 CET Andreas Müller wrote:
> OK - if you followed me till this point: What is the proper fix for
> qdbuscpp2xml working properly?
Why are we discussing a fix for Qt in the kde-devel mailing list?
--
Thiago Macieira - thiago (AT) macieir
unusable.
Should happen in the next couple of weeks, now that 5.6.2 is closed.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
-controlled server.
But then every dowstream redistributor of Ark would need to do the same.
Conclusion: just include the sources. We don't need the actual tarball, much
less the pre-generated autotools files. Add a copy of the actual source of GNU
Hello, the one that the upstream develop
On segunda-feira, 25 de julho de 2016 17:55:25 PDT Thiago Macieira wrote:
> > What's the best fix/workaround to this ? Any suggestions ?
>
> Build it with Qt 4. The library it links to has nothing to do with the
> input or output.
Well, besides the fact that you shouldn
e library it links to has nothing to do with the input
or output.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
packaging. I'd
recommend rm -rf the installation dir and start over.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
hile.
Delete your KDE Libs 4 files.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
Dialog:
> No such file or directory
QDialog is part of QtWidgets in Qt 5.
You're mixing KF5 and kdelibs from KDE 4.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
t 6.
>
> Please therefore ensure your application handles redirects
> appropriately (the form of the code will depend on the version of Qt
> in use) if you decide to use QNAM.
You do that by setting the attribute FollowRedirectsAttribute in your
QNetworkRequests.
--
Thiago Macieira
ersions, if they
don't use private API.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
to create a configuration file for
that
self-built Qt first. For example, for me:
$ cat ~/.config/qtchooser/5.conf
/home/tjmaciei/obj/qt/qt5/qtbase/bin
/home/tjmaciei/obj/qt/qt5/qtbase/lib
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
Em sábado, 28 de maio de 2016, às 15:37:53 BRT, Arno escreveu:
> Hi Thiago,
>
> On 5/28/2016 3:01 PM, Thiago Macieira wrote:
> > Em sábado, 28 de maio de 2016, às 01:08:24 BRT, Arno Moeller escreveu:
> >> As it seems, QUrl does not know about rdp://, so url.scheme() is
doesn't make sense. QUrl does know about *any* schemes except "file",
which means it recognises them all.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
c file.
>
> We get all the same icons as on Linux neatly in one file
Another way to load, instead of using QResource, is to put everything into one
.so and simply use QLibrary to open it. Same effect, though this would create
an architecture-specific resource, instead of sharing it across mult
tch": if you can't convince someone to take a second look during the time
you're inside an elevator with your prospective client/user, you've lost.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
dopt
the OS X look-and-feel or whether they should behave like they do on the
Plasma desktop, whether they're using the Cocoa or the X backends of Qt.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/G
eadWeaver library in debug mode so we
can see what the ?? are.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/GPG: 0x6EF45358; fingerprint:
E067 918B B660 DBD1 105C 966C 33F5 F005 6EF4 5358
>
e any shared interface will likely not map to what you expose
> right now.
Emmanuele is right: please agree on the x...@lists.freedesktop.org what the
interface will be before you release software depending on it.
Proof of concepts are fine, but until you reach a stable interface, no one can
ase here, since we would get
> similar failures everwhere we use std::string, right?
>
> Any idea what could be wrong? This obviously compiles just fine on Linux.
Compiler bug.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open S
(1), but Thiago's suggestion works perfectly.
There's also .trimmed() and .simplified(), which would strip the whitespaces
(including newlines).
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/G
at
> the end of the byte string, where the kdelibs4 version didn't.
There's QByteArray::toBase64. You may want to use that instead.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/GPG: 0x6EF45
Battery::Discharging?
That's probably enough. You may be powered by something other than an AC
adapter (USB ports, for example).
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/GPG: 0x6EF45358; fingerprint:
h isn't ideal) but should be fine otherwise.
>
> What is Qt doing in its magic build system - does anyone know?
In the .pro file
requres(contains(QT_CONFIG, private_tests))
And/or in the .cpp file:
#ifdef QT_BUILD_INTERNAL
The "private_tests" config key is the one that
rated to Git. Anything you'd need from the CVS repository should also be
found in Subversion and Git servers.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/GPG: 0x6EF45358; fingerprint:
E067 91
lled "Tier 1" depend on nothing
more than Qt plus maybe a handful of standard Linux libraries. "Tier 2"
components depend on other Tier 1 components.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Cente
vation. We'll need to fall back to the system's way of starting services.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/GPG: 0x6EF45358; fingerprint:
E067 918B B660 DBD1 105C 966C 33F5 F005 6EF4 5358
>> Visit http://mail.kde.org/mailman/listinfo/kde-devel#unsub to unsubscribe <<
ly important: constexpr and brace-initialisation in constructors.
If KDE wants to push the envelope, applications could begin requiring C++11 as
of next year. KF5 maybe in 2017.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Tech
hould request the start of kded5 or
> similar?
It's an installation mistake if you try to run KF5 code with XDG_xxx_DIRS set
improperly. That includes the setting for D-Bus daemon.
If you don't want that setting to influence your KDE 4 apps, run those apps in
a separate environment
7;s easy: just modify the env
files that startkde sources. If it was started by the Xsession mechanisms of
your distro, look up how to modify the environment of the Xsession.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Techno
the
> above be launched automatically?
Is a org.kde.kded5.service file installed in ${datadir}/dbus-1/services? If so,
the problem is just misconfiguration: you need to set XDG_DATA_DIRS properly
before launching D-Bus so that it will find the necessary .service files.
--
Thiago Macieira
like it even if it has problems ,
> and btw my italian bank support konqueror so i use it just for that
Konqueror and rekonq use the same engine. So what one renders, so does the
other.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Sou
tem-wide DPI settings. Chromium doesn't, so it draws everything in very
tiny fonts by default.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/GPG: 0x6EF45358; fingerprint:
E067 918B B660 DBD1 105C
ow why.
>
> Calling the srcUrl in my Webbrowser works as expected, but through KIO::Job
> I don't get the image I request.
>
> Has anyone an idea if my code is wrong or something in kdelibs?
> (The piece of code I'm talking about is in the project Choqok, file
> m
ors, can those values be reached? If the users
can't reach them, then you don't have to test them.
Otherwise, you can just declare your test class as a friend of the main class.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open
n which case the user or packager will be told of the missing
dependency and possibly reduced feature set in X, but the build will continue.
So it's really up to you to decide. Is this dependency really important? If
you can't do without, then distros will have to provide it.
--
Thiago
On quarta-feira, 25 de setembro de 2013 16:08:44, Uwe Brauer wrote:
> Can somebody please provide me with advice or tell me where to ask?
The X.org development list.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Cen
ity, which
supersedes the directory sort order behaviour anyway.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/GPG: 0x6EF45358; fingerprint:
E067 918B B660 DBD1 105C 966C 33F5 F005 6EF4 5358
signat
installed into these directories (in a mime sub-directory).
I'll add that XDG_CONFIG_DIRS should be /etc/xdg or at least include that.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/GPG: 0x6EF45
use BSD license is
considered incompatible with the GPL. Do not combine works containing the 4-
clause BSD license with GPL code.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/GPG: 0x6EF45358; fingerpr
On quarta-feira, 10 de julho de 2013 23.32.02, Leonardo Giordani wrote:
> Thank you for the hints.
> About locale database: I can figure it is not a simple piece of software.
It's BIG. And we can't agree on there being only one, so we have multiple
copies of it in any Linux sys
how to display the
phase of the moon". The locale database has to contain relevant information,
since it's already quite big today.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/GPG: 0x6EF45
u can do is get the time format (not the formatted time, the template
string) and extract what it uses for the hour.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/GPG: 0x6EF45358; fingerprint:
E067
o the trick.
It's not that simple. In the apply-immediately world, pressing Cancel reverts
to the settings before applying. The KDE "Apply" button does not allow
reverting.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel O
On quarta-feira, 22 de maio de 2013 18.23.11, Parker Coates wrote:
> On Wed, May 22, 2013 at 5:08 PM, Thiago Macieira wrote:
> > On quarta-feira, 22 de maio de 2013 13.39.20, Aaron J. Seigo wrote:
> >> On Wednesday, May 22, 2013 13:05:04 Volkan Gezer wrote:
> >> > htt
eporting it to Qt's bug tracker may be the best option.
QString's comparison is locale-unaware. If you need locale-aware comparisons,
you need to use either QCollator (Qt 5.1) or QString::localeAwareCompare.
This needs to be done in each application.
--
Thiago Macieira - thiago (AT) ma
not be the GNOME behaviour.
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/GPG: 0x6EF45358; fingerprint:
E067 918B B660 DBD1 105C 966C 33F5 F005 6EF4 5358
signature.asc
Description: This is a digitally sign
On segunda-feira, 29 de abril de 2013 18.52.16, Giuseppe D'Angelo wrote:
> On 29 April 2013 18:43, Thiago Macieira wrote:
> > With that in mind, I would suggest we change *both* coding styles to
> > optionally permit the braces, and strongly suggest it for more-complex
>
es not be added is a simple one:
1) it's uglier
With that in mind, I would suggest we change *both* coding styles to
optionally permit the braces, and strongly suggest it for more-complex
conditionals. In particular, it should suggest you leave the braces if you've
reduced the stateme
unregisters. You do not need
to wait for the reply to the method call in that case. Just send() it instead
of using asyncCall().
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open Source Technology Center
PGP/GPG: 0x6EF45358; fingerprint:
E067
On sábado, 9 de março de 2013 09.19.02, Reza Shah wrote:
> CMake Error at cmake/modules/FindQt4.cmake:1239 (MESSAGE):
> Qt qmake not found!
Where is qmake? And is it on $PATH?
--
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
Software Architect - Intel Open
1 - 100 of 161 matches
Mail list logo