lp://staging/~lubuntu-dev/lxde/qtermwidget
- Get this branch:
- bzr branch lp://staging/~lubuntu-dev/lxde/qtermwidget
Branch merges
Branch information
Import details
This branch is an import of the HEAD branch of the Git repository at https://github.com/qterminal/qtermwidget.git.
Last successful import was .
Recent revisions
- 166. By Luís Pereira
-
Fixes (#122)
* Prevent a possible C++11 range for detach
The solution with Qt>=5.7 is to use the qAsConst() macro.
But the qAsConst macro is just a const_cast to const T&.* Don't call QByteArray:
:operator[ ]() on temporary Just use the QByteArray::at().
* Adds missing reference in foreach
That's an non non trivial type (QString), using a reference as no drawbacks
and it performs better.* Use QStringList:
:constFirst( ) Drop QStringList:
:first( ). It's faster and we might avoid detaching a
temporary.* Don't call QList::operator[]() on temporary objects
It's not what we want. The at operator and QList::value() do the job in the
right way.* Stops allocating an unneeded temporary container
We were allocating an temporary container (_entries.
values( keyCode) ) which
implies an extra iteration also.
Now we don't use any temporary container and only perform one iteration. - 162. By Luís Pereira
-
Use target_
compile_ definitions( ) instead of add_definitions() The remaining ones.
- 160. By Luís Pereira
-
Use the lxqt_create_
pkgconfig_ file Drops the local one.
It also improves the .pc file in several ways. - 159. By Luís Pereira
-
Improve lxqt_translate_ts() use
Uses the INSTALL_DIR, COMPONENT and sources.
Add the UPDATE_TRANSLATIONS option. - 157. By Luís Pereira
-
Renames test app to example. Make it work
test is a reserved name. Adapt it to match the changes done.
src directory renamed to example. src was a misleading name.
Branch metadata
- Branch format:
- Branch format 7
- Repository format:
- Bazaar repository format 2a (needs bzr 1.16 or later)