swlbox.cxx (efeef26f) swlbox.cxx (4d7c9de0)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 209 unchanged lines hidden (view full) ---

218 if(nStyle & CBS_LOWER)
219 GetAppCharClass().toLower( aTxt );
220 else if( nStyle & CBS_UPPER )
221 GetAppCharClass().toUpper( aTxt );
222
223 return aTxt;
224}
225
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 209 unchanged lines hidden (view full) ---

218 if(nStyle & CBS_LOWER)
219 GetAppCharClass().toLower( aTxt );
220 else if( nStyle & CBS_UPPER )
221 GetAppCharClass().toUpper( aTxt );
222
223 return aTxt;
224}
225
226
227
226void SwComboBox::SetText( const XubString& rStr )
227{
228 ComboBox::SetText(rStr);
229 // MT: CallEventListeners stay protected for now. Probably not needed at all, as the implementation of VCLXAccessibelEdit/ComboBox should do it on text changed nowadays anyway. Verify.
230 // CallEventListeners( VCLEVENT_EDIT_MODIFY );
231}