summaryrefslogtreecommitdiff
path: root/Applications
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-10-05 10:29:06 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-10-05 10:29:52 +0200
commit31e361b827191749013d94b085369e12e0d11196 (patch)
tree208d1a6d8b55a576dd6dc96ed2e1556ff557f564 /Applications
parent319f0d2d1866516f158f8b7f6b9382f3519fde88 (diff)
downloadserenity-31e361b827191749013d94b085369e12e0d11196.zip
Base: Add a little welcome page for the browser at ~/www/welcome.html
Diffstat (limited to 'Applications')
-rw-r--r--Applications/Browser/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/Browser/main.cpp b/Applications/Browser/main.cpp
index 78d017eab9..0364619dcb 100644
--- a/Applications/Browser/main.cpp
+++ b/Applications/Browser/main.cpp
@@ -90,7 +90,7 @@ int main(int argc, char** argv)
window->set_main_widget(widget);
window->show();
- html_widget->load("file:///home/anon/www/phint.html");
+ html_widget->load("file:///home/anon/www/welcome.html");
return app.exec();
}