summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-08-18 11:20:44 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-08-18 11:20:44 +0100
commit0e3a462c641a3a7a3b0d991463f9b05683c7ec5d (patch)
tree683ec9129ae77d16df770dc9d1bc5c3afbcc38e1
parent1bb161ece5bd3a868778b7a8d4528bedaa589710 (diff)
missing InfoBox
Change-Id: I67e6e60e5a03696ec27b11afaa62ea443c5924ce
-rw-r--r--vcl/source/app/dbggui.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/vcl/source/app/dbggui.cxx b/vcl/source/app/dbggui.cxx
index 9099258194a0..fd65cab51c78 100644
--- a/vcl/source/app/dbggui.cxx
+++ b/vcl/source/app/dbggui.cxx
@@ -349,10 +349,9 @@ IMPL_LINK( DbgDialog, ClickHdl, Button*, pButton )
}
if( (aData.nTestFlags & ~IMMEDIATE_FLAGS) != (pData->nTestFlags & ~IMMEDIATE_FLAGS) )
{
- InfoBox aBox( this, OUString(
+ MessageDialog aBox(this, OUString(
"Some of the changed settings will only be active after "
- "restarting the process"
- ) );
+ "restarting the process"), VCL_MESSAGE_INFO);
aBox.Execute();
}
EndDialog( RET_OK );