ScreenSaver: Rename BuildScreenSaverDefaultSettingsView

...to just DefaultSettingsView

It is just as obvious what it does in context, but shorter.

Rename the function it contains from
BuildDefaultScreenSaverSettingsView to
BuildDefaultSettingsView
This commit is contained in:
John Scipione
2016-04-13 15:50:30 -07:00
parent 3801c37b90
commit e9208b6876
16 changed files with 44 additions and 50 deletions
@@ -1,24 +0,0 @@
/*
* Copyright 2009 Haiku, Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* Ryan Leavengood, [email protected]
*/
#ifndef _BUILD_SCREEN_SAVER_DEFAULT_SETTINGS_VIEW_H
#define _BUILD_SCREEN_SAVER_DEFAULT_SETTINGS_VIEW_H
class BView;
namespace BPrivate {
void
BuildScreenSaverDefaultSettingsView(BView* view, const char* moduleName,
const char* info);
} // namespace BPrivate
#endif // _BUILD_SCREEN_SAVER_DEFAULT_SETTINGS_VIEW_H
@@ -0,0 +1,23 @@
/*
* Copyright 2009 Haiku, Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* Ryan Leavengood, [email protected]
*/
#ifndef _DEFAULT_SETTINGS_VIEW_H
#define _DEFAULT_SETTINGS_VIEW_H
class BView;
namespace BPrivate {
void
BuildDefaultSettingsView(BView* view, const char* moduleName, const char* info);
} // namespace BPrivate
#endif // _DEFAULT_SETTINGS_VIEW_H