2006-02-07 01:12:56 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2006-02-07 01:12:55 +00:00
|
|
|
#include "nsPrintOptionsGTK.h"
|
2008-01-21 03:47:25 +00:00
|
|
|
#include "nsPrintSettingsGTK.h"
|
2006-02-07 01:12:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** ---------------------------------------------------
|
|
|
|
* See documentation in nsPrintOptionsWin.h
|
|
|
|
* @update 6/21/00 dwc
|
|
|
|
*/
|
|
|
|
nsPrintOptionsGTK::nsPrintOptionsGTK()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/** ---------------------------------------------------
|
|
|
|
* See documentation in nsPrintOptionsImpl.h
|
|
|
|
* @update 6/21/00 dwc
|
|
|
|
*/
|
|
|
|
nsPrintOptionsGTK::~nsPrintOptionsGTK()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-01-21 03:47:25 +00:00
|
|
|
/* nsIPrintSettings CreatePrintSettings (); */
|
|
|
|
nsresult nsPrintOptionsGTK::_CreatePrintSettings(nsIPrintSettings **_retval)
|
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
*_retval = nullptr;
|
2008-01-21 03:47:25 +00:00
|
|
|
nsPrintSettingsGTK* printSettings = new nsPrintSettingsGTK(); // does not initially ref count
|
|
|
|
NS_ENSURE_TRUE(printSettings, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
NS_ADDREF(*_retval = printSettings); // ref count
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|