plug-ins: fix warning.

Fix the following warning for missing case values:
> enumeration value ‘WEBKIT_LOAD_REDIRECTED’ not handled in switch
(same for WEBKIT_LOAD_COMMITTED)
This commit is contained in:
Jehan 2019-09-17 11:21:19 +02:00
parent 8edb75d78f
commit 642e47efaa
1 changed files with 4 additions and 0 deletions

View File

@ -1126,6 +1126,10 @@ load_changed (WebKitWebView *view,
update_actions ();
select_index (webkit_web_view_get_uri (view));
break;
case WEBKIT_LOAD_REDIRECTED:
case WEBKIT_LOAD_COMMITTED:
break;
}
}