Tag: cws_src680_visibility03 User: mhu Date: 05/03/07 11:09:13 Modified: /dba/dbaccess/source/ui/querydesign/ QueryDesignView.cxx
Log: #i40092# Fixed string ctor (ResId) usage. File Changes: Directory: /dba/dbaccess/source/ui/querydesign/ =============================================== File [changed]: QueryDesignView.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/querydesign/QueryDesignView.cxx?r1=1.71&r2=1.71.12.1 Delta lines: +5 -5 ------------------- --- QueryDesignView.cxx 17 Feb 2005 11:08:56 -0000 1.71 +++ QueryDesignView.cxx 7 Mar 2005 19:09:10 -0000 1.71.12.1 @@ -2,9 +2,9 @@ * * $RCSfile: QueryDesignView.cxx,v $ * - * $Revision: 1.71 $ + * $Revision: 1.71.12.1 $ * - * last change: $Author: vg $ $Date: 2005/02/17 11:08:56 $ + * last change: $Author: mhu $ $Date: 2005/03/07 19:09:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -338,9 +338,9 @@ if(xMetaData.is()) { ::comphelper::UStringMixEqual bCase(xMetaData->storesMixedCaseQuotedIdentifiers()); - if (bCase(rValue, ::rtl::OUString(ModuleRes(STR_QUERY_TRUE)))) + if (bCase(rValue, String(ModuleRes(STR_QUERY_TRUE)))) rNewValue = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("TRUE")); - else if (bCase(rValue, ::rtl::OUString(ModuleRes(STR_QUERY_FALSE)))) + else if (bCase(rValue, String(ModuleRes(STR_QUERY_FALSE)))) rNewValue = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("FALSE")); else rNewValue = rValue; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
