~ubuntu-branches/ubuntu/precise/virtualbox/precise-updates

« back to all changes in this revision

Viewing changes to src/VBox/Frontends/VirtualBox/src/runtime/UIMachine.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-10-17 23:23:09 UTC
  • mfrom: (3.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20111017232309-kzm6841lzk61ranj
Tags: 4.1.4-dfsg-1
* New upstream release.
  - Fixes missing icons when using pt_BR locale. (Closes: #507188)
  - Fixes guest additions download url. (Closes: #637349; LP: #840668)
* Refresh patches.
* Drop the vboxmouse x11 driver. The mouse integration is now completely
  handled by the kernel module.
* Restrict dh_pycentral to the virtualbox binary package.
* Merge changes from the Ubuntu package but use them only when built
  on Ubuntu:
  - Add an Apport hook.
  - Add vboxguest modalias to the package control field.
* Pass KBUILD_VERBOSE=2 to kmk.
* Add 36-fix-text-mode.patch to fix text mode when using the vboxvideo driver.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: UIMachine.cpp 38348 2011-08-08 12:09:18Z vboxsync $ */
 
1
/* $Id: UIMachine.cpp $ */
2
2
/** @file
3
3
 *
4
4
 * VBox frontends: Qt GUI ("VirtualBox"):
385
385
    if (m_ppThis)
386
386
        *m_ppThis = this;
387
387
 
388
 
    /* Create action pool: */
389
 
    UIActionPoolRuntime::create();
390
 
 
391
388
    /* Create UISession object: */
392
389
    m_pSession = new UISession(this, m_session);
393
390
 
417
414
    m_pSession = 0;
418
415
    m_session.UnlockMachine();
419
416
    m_session.detach();
420
 
    /* Destroy action pool: */
421
 
    UIActionPoolRuntime::destroy();
422
417
    /* Quit application: */
423
418
    QApplication::quit();
424
419
}