File tree Expand file tree Collapse file tree 1 file changed +5
-10
lines changed
Userland/Libraries/LibPDF Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -319,8 +319,7 @@ RENDERER_HANDLER(path_fill_nonzero)
319
319
320
320
RENDERER_HANDLER (path_fill_nonzero_deprecated)
321
321
{
322
- TRY (handle_path_fill_nonzero (args));
323
- return {};
322
+ return handle_path_fill_nonzero (args);
324
323
}
325
324
326
325
RENDERER_HANDLER (path_fill_evenodd)
@@ -334,29 +333,25 @@ RENDERER_HANDLER(path_fill_evenodd)
334
333
RENDERER_HANDLER (path_fill_stroke_nonzero)
335
334
{
336
335
m_anti_aliasing_painter.stroke_path (m_current_path, state ().stroke_color , state ().line_width );
337
- TRY (handle_path_fill_nonzero (args));
338
- return {};
336
+ return handle_path_fill_nonzero (args);
339
337
}
340
338
341
339
RENDERER_HANDLER (path_fill_stroke_evenodd)
342
340
{
343
341
m_anti_aliasing_painter.stroke_path (m_current_path, state ().stroke_color , state ().line_width );
344
- TRY (handle_path_fill_evenodd (args));
345
- return {};
342
+ return handle_path_fill_evenodd (args);
346
343
}
347
344
348
345
RENDERER_HANDLER (path_close_fill_stroke_nonzero)
349
346
{
350
347
m_current_path.close ();
351
- TRY (handle_path_fill_stroke_nonzero (args));
352
- return {};
348
+ return handle_path_fill_stroke_nonzero (args);
353
349
}
354
350
355
351
RENDERER_HANDLER (path_close_fill_stroke_evenodd)
356
352
{
357
353
m_current_path.close ();
358
- TRY (handle_path_fill_stroke_evenodd (args));
359
- return {};
354
+ return handle_path_fill_stroke_evenodd (args);
360
355
}
361
356
362
357
RENDERER_HANDLER (path_end)
You can’t perform that action at this time.
0 commit comments