mirror of
https://github.com/reactos/reactos.git
synced 2025-06-04 00:40:31 +00:00
[RAPPS] CMainWindow: make szSearchPattern a member
This commit is contained in:
parent
ba80f057c5
commit
85d6055201
3 changed files with 2 additions and 6 deletions
|
@ -799,6 +799,8 @@ class CMainWindow :
|
||||||
BOOL bSearchEnabled;
|
BOOL bSearchEnabled;
|
||||||
BOOL bUpdating;
|
BOOL bUpdating;
|
||||||
|
|
||||||
|
ATL::CStringW szSearchPattern;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
CMainWindow() :
|
CMainWindow() :
|
||||||
m_ClientPanel(NULL),
|
m_ClientPanel(NULL),
|
||||||
|
|
|
@ -2,9 +2,6 @@
|
||||||
#include <windef.h>
|
#include <windef.h>
|
||||||
#include <atlstr.h>
|
#include <atlstr.h>
|
||||||
|
|
||||||
class CAvailableApps;
|
|
||||||
|
|
||||||
HWND CreateMainWindow();
|
|
||||||
DWORD_PTR ListViewGetlParam(INT item);
|
DWORD_PTR ListViewGetlParam(INT item);
|
||||||
INT ListViewAddItem(INT ItemIndex, INT IconIndex, LPWSTR lpName, LPARAM lParam);
|
INT ListViewAddItem(INT ItemIndex, INT IconIndex, LPWSTR lpName, LPARAM lParam);
|
||||||
VOID SetStatusBarText(LPCWSTR szText);
|
VOID SetStatusBarText(LPCWSTR szText);
|
||||||
|
@ -17,4 +14,3 @@ VOID NewRichEditText(const ATL::CStringW& szText, DWORD flags);
|
||||||
VOID InsertRichEditText(const ATL::CStringW& szText, DWORD flags);
|
VOID InsertRichEditText(const ATL::CStringW& szText, DWORD flags);
|
||||||
CAvailableApps * GetAvailableApps();
|
CAvailableApps * GetAvailableApps();
|
||||||
extern HWND hListView;
|
extern HWND hListView;
|
||||||
extern ATL::CStringW szSearchPattern;
|
|
||||||
|
|
|
@ -18,8 +18,6 @@ HINSTANCE hInst;
|
||||||
INT SelectedEnumType = ENUM_ALL_INSTALLED;
|
INT SelectedEnumType = ENUM_ALL_INSTALLED;
|
||||||
SETTINGS_INFO SettingsInfo;
|
SETTINGS_INFO SettingsInfo;
|
||||||
|
|
||||||
ATL::CStringW szSearchPattern;
|
|
||||||
|
|
||||||
class CRAppsModule : public CComModule
|
class CRAppsModule : public CComModule
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Reference in a new issue