diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2016-04-05 18:55:38 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2016-04-05 18:55:38 +0000 |
commit | ab2852015641c9aa9aa2588fb21617e31b7da546 (patch) | |
tree | d364084fadc2ef4b3787b61695c8323ecf0a0214 /plugins/Weather/src/weather_opt.cpp | |
parent | ce08c537a294e306a01981f3f02c4757cd130c92 (diff) |
Weather: - cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@16589 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Weather/src/weather_opt.cpp')
-rw-r--r-- | plugins/Weather/src/weather_opt.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Weather/src/weather_opt.cpp b/plugins/Weather/src/weather_opt.cpp index fd36410b99..9377bf7339 100644 --- a/plugins/Weather/src/weather_opt.cpp +++ b/plugins/Weather/src/weather_opt.cpp @@ -28,7 +28,7 @@ static BOOL opt_startup; int RedrawFrame(WPARAM wParam, LPARAM lParam);
//============ LOADING AND SAVING OPTIONS ===========
-
+//
// set a string to default
// in = string to determine which field to set default "CBNEHXPp"
void SetTextDefault(const char* in)
@@ -387,7 +387,7 @@ static INT_PTR CALLBACK OptionsProc(HWND hdlg, UINT msg, WPARAM wparam, LPARAM l //============ TEXT OPTION DIALOG ============
-void LoadTextSettings(HWND hdlg)
+static void LoadTextSettings(HWND hdlg)
{
// load text option settings from memory
SetDlgItemText(hdlg, IDC_CTEXT, opt.cText);
@@ -401,7 +401,7 @@ void LoadTextSettings(HWND hdlg) }
// free the display text settings from memory
-void FreeTextVar(void)
+static void FreeTextVar(void)
{
wfree(&opt.cText);
wfree(&opt.bText);
|