Skip to content

Commit

Permalink
Update issue #330 : Some fixes to the blacklisted filters window
Browse files Browse the repository at this point in the history
Still not working yet
Currently disabled in CGraphView::OnUpdateFiltersManageBlacklist
  • Loading branch information
mikecopperwhite committed Mar 21, 2019
1 parent 30470f1 commit 37eead2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion graphstudionext.rc
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ BEGIN
END

IDD_DIALOG_BLACKLIST DIALOGEX 0, 0, 310, 200
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Filter Blacklist"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
Expand Down
6 changes: 3 additions & 3 deletions src/BlacklistForm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

IMPLEMENT_DYNAMIC(CBlacklistForm, CGraphStudioModelessDialog)

CBlacklistForm::CBlacklistForm(CWnd* pParent /*=NULL*/, BOOL isHR /*=FALSE*/)
: CGraphStudioModelessDialog(CBlacklistForm::IDD, pParent), m_isHR(isHR)
CBlacklistForm::CBlacklistForm(CGraphView* parent_view, BOOL isHR /*=FALSE*/)
: CGraphStudioModelessDialog(CBlacklistForm::IDD, parent_view), m_isHR(isHR)
{

view = parent_view;
}

CBlacklistForm::~CBlacklistForm()
Expand Down
2 changes: 1 addition & 1 deletion src/BlacklistForm.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class CBlacklistForm : public CGraphStudioModelessDialog
DECLARE_DYNAMIC(CBlacklistForm)

public:
CBlacklistForm(CWnd* pParent = NULL, BOOL forHR = FALSE);
CBlacklistForm(CGraphView* parent_view, BOOL forHR = FALSE);
virtual ~CBlacklistForm();

enum { IDD = IDD_DIALOG_BLACKLIST };
Expand Down

0 comments on commit 37eead2

Please sign in to comment.