Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About
Login

Console View

Legend:   Passed Failed Warnings Failed Again Running Exception Offline No data

00f52285ec61...
Albert Astals Cid
Annot: A few * parameters to const &
5c2d7896f2f0...
Albert Astals Cid
Annot: add some const markers to functions
620b426507c8...
Albert Astals Cid
Annot:  Change pointers we always use without checking for null to references
e1a4f1cfb8e4...
Albert Astals Cid
More std::string
7e192687c899...
Albert Astals Cid
Convert choices to vector
b4a64f349cee...
Albert Astals Cid
Convert defaultChoices to vector
deafdd361d90...
Albert Astals Cid
FormFieldChoice::getNumSelected() is const
373db7b2e13c...
Albert Astals Cid
Convert contents to GooString
It was never a null pointer.

There is a bit of speed lost in copying strings in SetContent, but
that's far from a hot path so the clarity of knowing getContent returns
a valid object is worth it
9e6976cdf862...
Albert Astals Cid
HorizontalTextLayouter take const &
2cc46515b4d6...
Albert Astals Cid
Take const std::string & as parameter
6b96e3fa5914...
Albert Astals Cid
PSSubstFont::psName can be a std::string
5984cbfdef39...
Albert Astals Cid
Take const std::string & instead of const char *
d4f70896193b...
Albert Astals Cid
embFontList is a std::string so add strings instead of char*
dc7e5d2f4b2f...
Albert Astals Cid
Remove unneeded const_cast
bd259f220507...
Albert Astals Cid
One unique_ptr more
2e7a6cf54cc0...
Albert Astals Cid
Turn a few GooString to std::string and save a new/delete
efec9f8c32a4...
Albert Astals Cid
Convert 4 const char * to const std::string
67196314ee00...
Dirk Müller
use memmove for overlapping memory moves
p is a pointer within buf, so memcpy(buf, p, ...) is not required to
handle it. memmove provides a reliable way to handle memory copying
with overlapping ranges.
13bee3960282...
Dirk Müller
Fix Typo in Object Generation Number Loop
The condition `num < 100000000` is used while limiting the parsing of `gen`.
If `num` is small, `gen` can be arbitrarily large, potentially leading to signed integer overflow.
a19b40e86f11...
Albert Astals Cid
Update (C)
d0def69db478...
lilydjwg
CairoFontEngine: pass faceIndex to freetype
ea00d330213a...
Albert Astals Cid
Update (C)
2851662b2265...
Albert Astals Cid
Remove Object::arrayRemove
a3de7f8a60f8...
Albert Astals Cid
Dict::getKey: Return const std::string &
875fecd7e7fb...
Stefan Brüns
Splash: Remove some leftover static_cast<double> for former SplashCoord
a63362b6bead...
Albert Astals Cid
Fix crash on malformed documents
Fixes issue #1722
f3deb540f1a7...
Stefan Brüns
Use std::string GooString format in more places
81ed6a389978...
Albert Astals Cid
Clear the bitmap if blitTransparent failed
Fixes issue #1721
efe4d4bffcf2...
Albert Astals Cid
Return early if we fail getting a value for bmSize
Fixes issue #1719
b3f05c10fcc6...
Albert Astals Cid
Fix crash on malformed document
Issue #1716
ecc27d8d1be2...
Albert Astals Cid
Fix crash on broken document
Issue #1718
1bb48122b5f6...
Albert Astals Cid
Update (C)
fcccee769807...
Albert Astals Cid
Remove checks for password being null
We are inside an if where we already checked password is not null
d45e9aa6fd35...
Sune Vuorela
Use named constructors for certain object types
Rather than relying on asserts and the differences between rvalue
std::string, string views and others to get the right object type for
non-string string-likes, use named constructors instead.
bb13b0f5a425...
Albert Astals Cid
Remove Object::dictGetValNF
7529fa8f9bd3...
Albert Astals Cid
Update (C)
f07b88d7c19f...
Stefan Brüns
Replace some leftover auto's with std::string
f7c9ff55c74d...
Stefan Brüns
Prefer Object::getNameString() over Object::getName()
This avoids repeated, implicit strlen calls when e.g. constructing
a std::string_view parameter expected by the callee.

Use a reference to the name string when the name is used repeatedly, to
avoid the recurrent variant dispatch.

Also `==` is easier to read than !strcmp.
1b016c94585f...
Stefan Brüns
Object: Avoid char* decay in Object::isName(name)
98f0be58d4fe...
Stefan Brüns
OutputDev: Replace const char* Marked Content tagname with const string &
As the called functions require a null-terminated string, prefer
const std::string& over std::string_view.