mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +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 bUpdating;
|
||||
|
||||
ATL::CStringW szSearchPattern;
|
||||
|
||||
public:
|
||||
CMainWindow() :
|
||||
m_ClientPanel(NULL),
|
||||
|
|
|
@ -2,9 +2,6 @@
|
|||
#include <windef.h>
|
||||
#include <atlstr.h>
|
||||
|
||||
class CAvailableApps;
|
||||
|
||||
HWND CreateMainWindow();
|
||||
DWORD_PTR ListViewGetlParam(INT item);
|
||||
INT ListViewAddItem(INT ItemIndex, INT IconIndex, LPWSTR lpName, LPARAM lParam);
|
||||
VOID SetStatusBarText(LPCWSTR szText);
|
||||
|
@ -17,4 +14,3 @@ VOID NewRichEditText(const ATL::CStringW& szText, DWORD flags);
|
|||
VOID InsertRichEditText(const ATL::CStringW& szText, DWORD flags);
|
||||
CAvailableApps * GetAvailableApps();
|
||||
extern HWND hListView;
|
||||
extern ATL::CStringW szSearchPattern;
|
||||
|
|
|
@ -18,8 +18,6 @@ HINSTANCE hInst;
|
|||
INT SelectedEnumType = ENUM_ALL_INSTALLED;
|
||||
SETTINGS_INFO SettingsInfo;
|
||||
|
||||
ATL::CStringW szSearchPattern;
|
||||
|
||||
class CRAppsModule : public CComModule
|
||||
{
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue