Bug 1494162 - Part 52: Don't show the empty message in the CssRuleView constructor...
[gecko.git] / accessible / mac / MacUtils.h
blobde54b37c1d195e0b016d7f76e05a60d2cd698c75
1 /* -*- Mode: Objective-C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef _MacUtils_H_
8 #define _MacUtils_H_
10 #include "nsStringFwd.h"
12 @class NSString;
14 namespace mozilla {
15 namespace a11y {
16 namespace utils {
18 /**
19 * Get a localized string from the string bundle.
20 * Return nil if not found.
22 NSString* LocalizedString(const nsString& aString);
28 #endif