Code review comment for lp:~mardy/webbrowser-app/per-account-dir2

Revision history for this message
Olivier Tilloy (osomon) wrote :

A minor style suggestion, in WebViewImplOxide.qml:

  property url dataPath
  …
  context: WebContext {
    dataPath: webview.dataPath
  }

could have been written:

  property alias dataPath: context.dataPath
  …
  context: WebContext {}

« Back to merge proposal