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

« back to all changes in this revision

Viewing changes to src/VBox/Additions/x11/vboxvideo/pointer.c

  • 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:
188
188
        rc = FALSE;
189
189
    }
190
190
    pVBox->useDevice = rc;
191
 
    /* We can't switch to a software cursor at will without help from
192
 
     * VBoxClient.  So tell that to the host and wait for VBoxClient to
193
 
     * change this. */
194
 
    vrc = VbglR3GetMouseStatus(&fMouseFeatures, NULL, NULL);
195
 
    if (RT_SUCCESS(vrc))
196
 
        VbglR3SetMouseStatus(  fMouseFeatures
197
 
                             | VMMDEV_MOUSE_GUEST_NEEDS_HOST_CURSOR);
198
191
    return rc;
199
192
}
200
193