QueryDeleteDlg_Impl: add GetResult() that was removed in ...

02d4eb7438

Change-Id: I45b5691a3dc4cf2444e0daf8cb2ae0134532f596
This commit is contained in:
Michael Stahl
2013-11-27 20:47:18 +01:00
parent 88df79be2f
commit a74b3e89c9
2 changed files with 2 additions and 1 deletions

View File

@@ -219,7 +219,7 @@ void OApplicationController::deleteObjects( ElementType _eType, const ::std::vec
aDlg.EnableAllButton(); aDlg.EnableAllButton();
if ( aDlg.Execute() == RET_OK ) if ( aDlg.Execute() == RET_OK )
eResult = aDlg.GetResult(); eResult = aDlg.GetQueryDeleteResult();
else else
return; return;

View File

@@ -240,6 +240,7 @@ public:
QueryDeleteDlg_Impl( Window* pParent, QueryDeleteDlg_Impl( Window* pParent,
const OUString& rName ); const OUString& rName );
QueryDeleteResult_Impl GetQueryDeleteResult() const { return m_eResult; }
void EnableAllButton() { m_pAllButton->Enable(true); } void EnableAllButton() { m_pAllButton->Enable(true); }
}; };