summaryrefslogtreecommitdiff
path: root/fpicker/source/office/asyncfilepicker.cxx
diff options
context:
space:
mode:
authorBerk Gureken <berkgureken@gmail.com>2016-02-01 12:07:06 +0200
committerMichael Stahl <mstahl@redhat.com>2016-02-04 12:54:23 +0000
commit9108dc39525fb1d881d5b4a634039a25ef2d2d25 (patch)
tree8e77cba1ae24fa8fb2515b3f620da0e16cb91a02 /fpicker/source/office/asyncfilepicker.cxx
parent1ee9765beffa7cebcc891227d741eeb0cc74eb55 (diff)
tdf#43157 Cleanup DBG_ASSERT for fpicker and framework
Change-Id: I1b79a39a9d709184cc72a905647f73dbf85eef27 Signed-off-by: Berk Gureken <berkgureken@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/21991 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'fpicker/source/office/asyncfilepicker.cxx')
-rw-r--r--fpicker/source/office/asyncfilepicker.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/fpicker/source/office/asyncfilepicker.cxx b/fpicker/source/office/asyncfilepicker.cxx
index e1dade722bb2..2f390e621797 100644
--- a/fpicker/source/office/asyncfilepicker.cxx
+++ b/fpicker/source/office/asyncfilepicker.cxx
@@ -34,8 +34,8 @@ namespace svt
,m_pDialog ( _pDialog )
,m_bRunning ( false )
{
- DBG_ASSERT( m_pDialog, "AsyncPickerAction::AsyncPickerAction: invalid dialog!" );
- DBG_ASSERT( m_pView, "AsyncPickerAction::AsyncPickerAction: invalid view!" );
+ assert( m_pDialog && "AsyncPickerAction::AsyncPickerAction: invalid dialog!" );
+ assert( m_pView && "AsyncPickerAction::AsyncPickerAction: invalid view!" );
}