Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
91a0a53e
Kaydet (Commit)
91a0a53e
authored
Ara 04, 2010
tarafından
Takeshi Abe
Kaydeden (comit)
Caolán McNamara
Ara 05, 2010
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace all occured, occurance etc.
üst
1d922012
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
22 additions
and
22 deletions
+22
-22
i_type.hxx
autodoc/inc/ary/idl/i_type.hxx
+1
-1
cross_refs.hxx
autodoc/source/ary/inc/cross_refs.hxx
+1
-1
sorted_idset.hxx
autodoc/source/ary/inc/sorted_idset.hxx
+1
-1
tokproct.hxx
autodoc/source/parser/inc/tokens/tokproct.hxx
+1
-1
tokproct.hxx
autodoc/source/parser_i/inc/s2_luidl/tokproct.hxx
+1
-1
tkp2.hxx
autodoc/source/parser_i/inc/tokens/tkp2.hxx
+1
-1
How_to_write_my_own_driver.txt
...de/Database/DriverSkeleton/How_to_write_my_own_driver.txt
+1
-1
DataAwareness.java
odk/examples/DevelopersGuide/Forms/DataAwareness.java
+1
-1
KeyGenerator.java
odk/examples/DevelopersGuide/Forms/KeyGenerator.java
+1
-1
FunctionHelper.java
...ersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
+1
-1
ToDo.java
odk/examples/java/ToDo/ToDo.java
+1
-1
InstallationFinder.java
odk/source/com/sun/star/lib/loader/InstallationFinder.java
+7
-7
unoapploader.c
odk/source/unoapploader/unx/unoapploader.c
+2
-2
unoapploader.c
odk/source/unoapploader/win/unoapploader.c
+2
-2
No files found.
autodoc/inc/ary/idl/i_type.hxx
Dosyayı görüntüle @
91a0a53e
...
...
@@ -58,7 +58,7 @@ class Type_2s
/** Base of all IDL types.
Type represents the occurence of a type as base,
Type represents the occur
r
ence of a type as base,
parameter, return type or element type in UNO IDL code.
Some of them relate to a ->CodeEntity, but
the ->Type "MyInterface" is something different than
...
...
autodoc/source/ary/inc/cross_refs.hxx
Dosyayı görüntüle @
91a0a53e
...
...
@@ -44,7 +44,7 @@ class CrossReferences
public
:
typedef
TYPES
::
element_type
element
;
/// Checks for double occurences
/// Checks for double occur
r
ences
void
Add
(
VALUE_LIST
::
index_type
i_nPosition
...
...
autodoc/source/ary/inc/sorted_idset.hxx
Dosyayı görüntüle @
91a0a53e
...
...
@@ -44,7 +44,7 @@ template <class XY> class SortedIdSet;
class
Interface_2s
{
public
:
/// Checks for double occurences
/// Checks for double occur
r
ences
void
Add_ExportingService
(
Ce_id
i_nId
);
void
Get_ExportingServices
(
...
...
autodoc/source/parser/inc/tokens/tokproct.hxx
Dosyayı görüntüle @
91a0a53e
...
...
@@ -56,7 +56,7 @@ class TokenProcessing_Types
stay
,
// same parse environment
push
,
// push sub environment
pop_success
,
// return to parent environment, parsing was successful
pop_failure
// return to parent environment, but an error occured.
pop_failure
// return to parent environment, but an error occur
r
ed.
};
struct
TokenProcessing_Result
...
...
autodoc/source/parser_i/inc/s2_luidl/tokproct.hxx
Dosyayı görüntüle @
91a0a53e
...
...
@@ -64,7 +64,7 @@ class TokenProcessing_Types
push_sure
,
// push sub environment, which must be the correct one
push_try
,
// push sub environment, which is tried, if it may be the right one
pop_success
,
// return to parent environment, parsing was successful
pop_failure
// return to parent environment, but an error occured.
pop_failure
// return to parent environment, but an error occur
r
ed.
};
struct
TokenProcessing_Result
...
...
autodoc/source/parser_i/inc/tokens/tkp2.hxx
Dosyayı görüntüle @
91a0a53e
...
...
@@ -65,7 +65,7 @@ class TokenParse2
source code.
@return true, if there was passed a valid token.
false, if the parsed stream is finished or
an error occured.
an error occur
r
ed.
*/
bool
GetNextToken
();
...
...
odk/examples/DevelopersGuide/Database/DriverSkeleton/How_to_write_my_own_driver.txt
Dosyayı görüntüle @
91a0a53e
How to write my own sdbc driver
Pre implementation steps
- search all occur
a
nces of skeleton and replace them to a name which you prefer
- search all occur
re
nces of skeleton and replace them to a name which you prefer
1. Implement a class called driver or modify the existing skeleton -> have a look at SDriver.?xx
2. Implement a class called connection -> have a look at SConnection.?xx
...
...
odk/examples/DevelopersGuide/Forms/DataAwareness.java
Dosyayı görüntüle @
91a0a53e
...
...
@@ -219,7 +219,7 @@ public class DataAwareness extends DocumentBasedExample implements XPropertyChan
/* ------------------------------------------------------------------ */
public
void
resetted
(
EventObject
aEvent
)
throws
com
.
sun
.
star
.
uno
.
RuntimeException
{
// check if this reset occured becase we're on a new record
// check if this reset occur
r
ed becase we're on a new record
XPropertySet
xFormProps
=
UNO
.
queryPropertySet
(
aEvent
.
Source
);
try
{
...
...
odk/examples/DevelopersGuide/Forms/KeyGenerator.java
Dosyayı görüntüle @
91a0a53e
...
...
@@ -249,7 +249,7 @@ class KeyGeneratorForReset extends UniqueColumnValue implements XResetListener
/* ------------------------------------------------------------------ */
public
void
resetted
(
com
.
sun
.
star
.
lang
.
EventObject
aEvent
)
throws
com
.
sun
.
star
.
uno
.
RuntimeException
{
// check if this reset occured becase we're on a new record
// check if this reset occur
r
ed becase we're on a new record
XPropertySet
xFormProps
=
UNO
.
queryPropertySet
(
aEvent
.
Source
);
try
{
...
...
odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
Dosyayı görüntüle @
91a0a53e
...
...
@@ -410,7 +410,7 @@ public class FunctionHelper
catch
(
com
.
sun
.
star
.
uno
.
Exception
exUno
)
{
// "createInstance()" method of used service manager can throw it.
// If it occured during creation of desktop service the frame already was created.
// If it occur
r
ed during creation of desktop service the frame already was created.
// Free it by decresing his refcount. Changes on the desktop tree couldn't exist.
// Without the desktop service that wasn't possible. So no further rollbacks must follow.
if
(
xFrame
!=
null
)
...
...
odk/examples/java/ToDo/ToDo.java
Dosyayı görüntüle @
91a0a53e
...
...
@@ -916,7 +916,7 @@ public class ToDo {
/** Writing the stack trace from an exception to a string and calling
* the method showMessage() with this string.
* @param exception The occured exception.
* @param exception The occur
r
ed exception.
* @see showMessage
*/
public
void
showExceptionMessage
(
Exception
exception
)
{
...
...
odk/source/com/sun/star/lib/loader/InstallationFinder.java
Dosyayı görüntüle @
91a0a53e
...
...
@@ -79,7 +79,7 @@ final class InstallationFinder {
* Gets the path of a UNO installation.
*
* @return the installation path or <code>null</code>, if no installation
* was specified or found, or if an error occured
* was specified or found, or if an error occur
r
ed
*/
public
static
String
getPath
()
{
...
...
@@ -140,7 +140,7 @@ final class InstallationFinder {
* java -D<property name>=<installation path> -jar application.jar.</p>
*
* @return the installation path or <code>null</code>, if no installation
* was specified in the Java system property or if an error occured
* was specified in the Java system property or if an error occur
r
ed
*/
private
static
String
getPathFromProperty
(
String
prop
)
{
...
...
@@ -164,7 +164,7 @@ final class InstallationFinder {
* Java versions.</p>
*
* @return the installation path or <code>null</code>, if no installation
* was specified in the environment variable or if an error occured
* was specified in the environment variable or if an error occur
r
ed
*/
private
static
String
getPathFromEnvVar
(
String
var
)
{
...
...
@@ -188,7 +188,7 @@ final class InstallationFinder {
* <p>This method is called on the Windows platform only.</p>
*
* @return the installation path or <code>null</code>, if no installation
* was found or if an error occured
* was found or if an error occur
r
ed
*/
private
static
String
getPathFromWindowsRegistry
()
{
...
...
@@ -227,7 +227,7 @@ final class InstallationFinder {
* Java versions.</p>
*
* @return the installation path or <code>null</code>, if no installation
* was found or if an error occured
* was found or if an error occur
r
ed
*/
private
static
String
getPathFromPathEnvVar
()
{
...
...
@@ -286,7 +286,7 @@ final class InstallationFinder {
* is in one of the directories listed in the PATH environment variable.</p>
*
* @return the installation path or <code>null</code>, if no installation
* was found or if an error occured
* was found or if an error occur
r
ed
*/
private
static
String
getPathFromWhich
()
{
...
...
@@ -382,7 +382,7 @@ final class InstallationFinder {
* OOo 2.0.</p>
*
* @return the installation path or <code>null</code>, if no installation
* was found or if an error occured
* was found or if an error occur
r
ed
*/
private
static
String
getPathFromSVersionFile
()
{
...
...
odk/source/unoapploader/unx/unoapploader.c
Dosyayı görüntüle @
91a0a53e
...
...
@@ -231,7 +231,7 @@ int main( int argc, char *argv[] )
* Gets the path of a UNO installation.
*
* @return the installation path or NULL, if no installation was specified or
* found, or if an error occured
* found, or if an error occur
r
ed
*/
char
const
*
getPath
()
{
...
...
@@ -255,7 +255,7 @@ char const* getPath()
*
* @param argv0 specifies the argv[0] parameter of the main function
*
* @return the application's executable file name or NULL, if an error occured
* @return the application's executable file name or NULL, if an error occur
r
ed
*/
char
*
createCommandName
(
char
*
argv0
)
{
...
...
odk/source/unoapploader/win/unoapploader.c
Dosyayı görüntüle @
91a0a53e
...
...
@@ -282,7 +282,7 @@ int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
* Gets the path of a UNO installation.
*
* @return the installation path or NULL, if no installation was specified or
* found, or if an error occured
* found, or if an error occur
r
ed
*/
char
const
*
getPath
()
{
...
...
@@ -305,7 +305,7 @@ char const* getPath()
* the executable name
*
* @return the command line for the application process or NULL, if an error
* occured
* occur
r
ed
*/
char
*
createCommandLine
(
char
*
appendix
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment