~ubuntu-branches/ubuntu/precise/firefox/precise-proposed

« back to all changes in this revision

Viewing changes to widget/src/gtk2/nsWindow.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Ian Jackson
  • Date: 2005-12-02 20:16:18 UTC
  • Revision ID: james.westby@ubuntu.com-20051202201618-txu8o1sikp5e3by5
Tags: 1.4.99+1.5rc3.dfsg-1ubuntu4
* Applied mozilla-1.7.12-2.src.rpm's firefox-1.0-uriloader.patch
  which causes firefox to look first in the Gnome MIME handling registry
  (MIME handling is still very wrong).
* Disabled File / Import from main menu since it does not work at all
  (Ubuntu bugzilla 10339 still applies; patch brought forward).
* Displayed printer names no longer show `CUPS/' prefix.
  (Ubuntu bugzilla 11481 regressed; patch from Breezy enhanced).
* Print command fixed (again) to cope with spaces in printer names.
* Remove incorrect note about Pango from README.Debian.
* Re-fix-up localised startup URLs in en-US region.properties.
* Fix incorrect layout/sizing in Help / About box (a bit hacky).
* Re-forward-port patch to fix printer names with spaces.
* Remove all subdirectories '*.OBJ' during clean.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1537
1537
        return;
1538
1538
 
1539
1539
    switch (aEvent->button) {
 
1540
    case 1:
 
1541
        eventType = NS_MOUSE_LEFT_BUTTON_DOWN;
 
1542
        break;
1540
1543
    case 2:
1541
1544
        eventType = NS_MOUSE_MIDDLE_BUTTON_DOWN;
1542
1545
        break;
1544
1547
        eventType = NS_MOUSE_RIGHT_BUTTON_DOWN;
1545
1548
        break;
1546
1549
    default:
1547
 
        eventType = NS_MOUSE_LEFT_BUTTON_DOWN;
1548
1550
        break;
1549
1551
    }
1550
1552