gecko-dev/widget/gtk/nsPrintDialogGTK.h
Nicholas Nethercote bab6d17ebf Bug 1293117 (part 4) - Change many NS_IMETHODIMP occurrences to NS_IMETHOD. r=froydnj.
This patch makes the following changes on many in-class methods.

- NS_IMETHODIMP F() override;      --> NS_IMETHOD F() override;
- NS_IMETHODIMP F() override {...} --> NS_IMETHOD F() override {...}
- NS_IMETHODIMP F() final;         --> NS_IMETHOD F() final;
- NS_IMETHODIMP F() final {...}    --> NS_IMETHOD F() final {...}

Using NS_IMETHOD is the preferred way of marking in-class virtual methods.
Although these transformations add an explicit |virtual|, they are safe --
there's an implicit |virtual| anyway because |override| and |final| only work
with virtual methods.

--HG--
extra : rebase_source : 386ee4e4ea2ecd8d5001efabc3ac87b4d6c0659f
2016-08-08 10:54:47 +10:00

40 lines
1.1 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsPrintDialog_h__
#define nsPrintDialog_h__
#include "nsIPrintDialogService.h"
class nsIPrintSettings;
// Copy the print pages enum here because not all versions
// have SELECTION, which we will use
typedef enum
{
_GTK_PRINT_PAGES_ALL,
_GTK_PRINT_PAGES_CURRENT,
_GTK_PRINT_PAGES_RANGES,
_GTK_PRINT_PAGES_SELECTION
} _GtkPrintPages;
class nsPrintDialogServiceGTK : public nsIPrintDialogService
{
virtual ~nsPrintDialogServiceGTK();
public:
nsPrintDialogServiceGTK();
NS_DECL_ISUPPORTS
NS_IMETHOD Init() override;
NS_IMETHOD Show(nsPIDOMWindowOuter *aParent, nsIPrintSettings *aSettings,
nsIWebBrowserPrint *aWebBrowserPrint) override;
NS_IMETHOD ShowPageSetup(nsPIDOMWindowOuter *aParent,
nsIPrintSettings *aSettings) override;
};
#endif