* @brief Finishes any pending operations * * This event is sent whenever a pending operation such as * a move operation should be finished. * In contrast to "edit_cancel", this version is supposed * not to rollback, for example if transactions are involved. */
| 356 | * not to rollback, for example if transactions are involved. |
| 357 | */ |
| 358 | virtual void edit_finish () |
| 359 | { |
| 360 | // by default maps to edit_cancel |
| 361 | edit_cancel (); |
| 362 | } |
| 363 | |
| 364 | /** |
| 365 | * @brief Indicates if any objects are selected |
nothing calls this directly
no test coverage detected