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

« back to all changes in this revision

Viewing changes to src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineLogicNormal.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: UIMachineLogicNormal.cpp 38348 2011-08-08 12:09:18Z vboxsync $ */
 
1
/* $Id: UIMachineLogicNormal.cpp $ */
2
2
/** @file
3
3
 *
4
4
 * VBox frontends: Qt GUI ("VirtualBox"):
30
30
#include "UIMachineLogicNormal.h"
31
31
#include "UIMachineWindow.h"
32
32
#include "UIDownloaderAdditions.h"
 
33
#include "UIDownloaderExtensionPack.h"
33
34
 
34
35
#ifdef Q_WS_MAC
35
36
#include "VBoxUtils.h"
76
77
    /* Prepare normal machine window: */
77
78
    prepareMachineWindows();
78
79
 
79
 
    /* If there is an Additions download running, update the parent window
80
 
     * information. */
 
80
    /* If there is an Additions download running, update the parent window information. */
81
81
    if (UIDownloaderAdditions *pDl = UIDownloaderAdditions::current())
82
82
        pDl->setParentWidget(mainMachineWindow()->machineWindow());
83
83
 
 
84
    /* If there is an Extension Pack download running, update the parent window information. */
 
85
    if (UIDownloaderExtensionPack *pDl = UIDownloaderExtensionPack::current())
 
86
        pDl->setParentWidget(mainMachineWindow()->machineWindow());
 
87
 
84
88
#ifdef Q_WS_MAC
85
89
    /* Prepare dock: */
86
90
    prepareDock();