| 276 | } |
| 277 | |
| 278 | void NWebView::editAlert() { |
| 279 | |
| 280 | // If this is the first time the note is dirty, set the dirty |
| 281 | // flag (this is checked elsewhere) and signal the change |
| 282 | if (!isDirty) { |
| 283 | isDirty = true; |
| 284 | emit(noteChanged()); |
| 285 | } |
| 286 | emit (htmlEditAlert()); |
| 287 | |
| 288 | // This should already be set, but just in case... |
| 289 | isDirty = true; |
| 290 | } |
| 291 | |
| 292 | |
| 293 | void NWebView::exposeToJavascript() { |
nothing calls this directly
no outgoing calls
no test coverage detected