summaryrefslogtreecommitdiff
path: root/svx/source/unodialogs
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-10-12 12:23:36 +0000
committerOliver Bolte <obo@openoffice.org>2006-10-12 12:23:36 +0000
commite354e86ecb63d845cb1fcb798506245be2d481b2 (patch)
tree69690717b8679f65a1162df1679e6fd723cdf05a /svx/source/unodialogs
parentce2226b1905bf5b8b7a950aac1e567bcb257327e (diff)
INTEGRATION: CWS sb59 (1.4.62); FILE MERGED
2006/09/01 08:01:27 sb 1.4.62.2: #i67535# Made code warning-free (GCC 4.0.3). 2006/08/03 13:52:00 cl 1.4.62.1: removed compiler warnings
Diffstat (limited to 'svx/source/unodialogs')
-rw-r--r--svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx b/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx
index c88c1299da0b..3904e0bb4224 100644
--- a/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx
+++ b/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: chinese_dictionarydialog.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 06:08:41 $
+ * last change: $Author: obo $ $Date: 2006-10-12 13:23:36 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -188,9 +188,9 @@ void DictionaryList::save()
m_xDictionary->addEntry( pE->m_aTerm, pE->m_aMapping );
xPropertyType->setPropertyType( pE->m_aTerm, pE->m_aMapping, pE->m_nConversionPropertyType );
}
- catch( uno::Exception& e )
+ catch( uno::Exception& )
{
- e;
+
}
}
}
@@ -537,7 +537,7 @@ ChineseDictionaryDialog::ChineseDictionaryDialog( Window* pParent )
m_aCT_DictionaryToTraditional.SetHelpId( HID_SVX_CHINESE_DICTIONARY_LB_TO_TRADITIONAL );
SvtLinguConfig aLngCfg;
- sal_Bool bValue;
+ sal_Bool bValue = sal_Bool();
Any aAny( aLngCfg.GetProperty( rtl::OUString::createFromAscii( UPN_IS_REVERSE_MAPPING ) ) );
if( aAny >>= bValue )
m_aCB_Reverse.Check( bValue );
@@ -705,7 +705,7 @@ void ChineseDictionaryDialog::updateAfterDirectionChange()
updateButtons();
}
-IMPL_LINK( ChineseDictionaryDialog, EditFieldsHdl, Control*, pCtrl )
+IMPL_LINK( ChineseDictionaryDialog, EditFieldsHdl, Control*, EMPTYARG )
{
updateButtons();
return 0;
@@ -784,7 +784,7 @@ void ChineseDictionaryDialog::updateButtons()
m_aPB_Delete.Enable( !bAdd && getActiveDictionary().GetSelectedRowCount()>0 );
- DictionaryEntry* pFirstSelectedEntry = getActiveDictionary().getFirstSelectedEntry();
+// DictionaryEntry* pFirstSelectedEntry = getActiveDictionary().getFirstSelectedEntry();
bool bModify = false;
{