cppumaker.cxx (ff7655f0) cppumaker.cxx (9d8e7fba)
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

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

193 {
194 // produce this type and his scope
195 if (typeName.equals("*"))
196 {
197 tmpName = "/";
198 } else
199 {
200 tmpName = typeName.copy(0, typeName.lastIndexOf('.')).replace('.', '/');
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

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

193 {
194 // produce this type and his scope
195 if (typeName.equals("*"))
196 {
197 tmpName = "/";
198 } else
199 {
200 tmpName = typeName.copy(0, typeName.lastIndexOf('.')).replace('.', '/');
201 if (tmpName.getLength() == 0)
201 if ( tmpName.isEmpty() )
202 tmpName = "/";
203 else
204 tmpName.replace('.', '/');
205 }
206 // related to task #116780# the scope is recursively
207 // generated. bFullScope = true
208 produceAllTypes(
209 tmpName, typeMgr, generated, &options, true);

--- 31 unchanged lines hidden ---
202 tmpName = "/";
203 else
204 tmpName.replace('.', '/');
205 }
206 // related to task #116780# the scope is recursively
207 // generated. bFullScope = true
208 produceAllTypes(
209 tmpName, typeMgr, generated, &options, true);

--- 31 unchanged lines hidden ---