Skip to content

Commit cc1480f

Browse files
committed
Fix some line length
1 parent 838abf0 commit cc1480f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

webview/platform/linux/webview_linux_webkitgtk.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,9 @@ bool Instance::create(Config config) {
281281
::base::install_event_filter(_widget, [=](
282282
not_null<QEvent*> e) {
283283
if (e->type() == QEvent::Resize) {
284-
const auto size = static_cast<QResizeEvent*>(e.get())->size();
284+
const auto size = static_cast<QResizeEvent*>(
285+
e.get()
286+
)->size();
285287
resize(size.width(), size.height());
286288
}
287289
return ::base::EventFilterResult::Continue;
@@ -749,7 +751,7 @@ void Instance::dataRequest(
749751
if (requestedLimit <= 0) {
750752
requestedLimit = (total - requestedOffset);
751753
}
752-
754+
753755
if (!headersWritten) {
754756
socket->write("HTTP/1.1 ");
755757
socket->write(partial ? "206 Partial Content\r\n" : "200 OK\r\n");

0 commit comments

Comments
 (0)