2012-01-31 00:44:34 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
2013-04-19 21:10:42 +01:00
|
|
|
* This file is part of the LibreOffice project.
|
2012-01-31 00:44:34 +01:00
|
|
|
*
|
2013-04-19 21:10:42 +01: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/.
|
2012-01-31 00:44:34 +01:00
|
|
|
*/
|
2014-05-15 12:06:32 +02:00
|
|
|
#ifndef INCLUDED_FPICKER_SOURCE_OFFICE_FPSOFFICERESMGR_HXX
|
|
|
|
#define INCLUDED_FPICKER_SOURCE_OFFICE_FPSOFFICERESMGR_HXX
|
2012-01-31 00:44:34 +01:00
|
|
|
|
2017-07-31 17:16:27 +01:00
|
|
|
#include <unotools/resmgr.hxx>
|
2012-01-31 00:44:34 +01:00
|
|
|
|
2017-06-11 20:56:30 +01:00
|
|
|
inline OUString FpsResId(const char* pId)
|
2017-05-18 10:14:30 +01:00
|
|
|
{
|
2017-12-13 19:17:48 +01:00
|
|
|
return Translate::get(pId, Translate::Create("fps"));
|
2017-06-11 20:56:30 +01:00
|
|
|
};
|
2012-04-29 23:36:57 +01:00
|
|
|
|
2012-01-31 00:44:34 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|