From: Abdelrazak Younes Date: Thu, 5 Jun 2008 15:28:27 +0000 (+0000) Subject: The inset connection is not needed as the dialog will retrieve the inset from the... X-Git-Tag: 1.6.10~4495 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=34739e59f7d994c382fa8e31b622457567f21694;p=features.git The inset connection is not needed as the dialog will retrieve the inset from the cursor location. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25145 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/InsetInfo.cpp b/src/insets/InsetInfo.cpp index 2d09371421..98b3a6167b 100644 --- a/src/insets/InsetInfo.cpp +++ b/src/insets/InsetInfo.cpp @@ -142,7 +142,7 @@ void InsetInfo::write(ostream & os) const bool InsetInfo::showInsetDialog(BufferView * bv) const { - bv->showDialog("info", "", const_cast(this)); + bv->showDialog("info"); return true; }