s/the the/the/
Change-Id: Iadacffaad832c6ff06757e8567e24f929f24a4c3
This commit is contained in:
parent
7ca8407b40
commit
616c6924f1
@ -75,7 +75,7 @@ public:
|
|||||||
the XAccessibleSelection interface is not supported and the items
|
the XAccessibleSelection interface is not supported and the items
|
||||||
are transient.
|
are transient.
|
||||||
@param sTextOfSelectedItem
|
@param sTextOfSelectedItem
|
||||||
This string contains the text of the the currently selected
|
This string contains the text of the currently selected
|
||||||
item. It is used to retrieve the index of that item.
|
item. It is used to retrieve the index of that item.
|
||||||
*/
|
*/
|
||||||
void UpdateSelection (OUString sTextOfSelectedItem);
|
void UpdateSelection (OUString sTextOfSelectedItem);
|
||||||
|
@ -1487,7 +1487,7 @@ void Document::Notify(::SfxBroadcaster &, ::SfxHint const & rHint)
|
|||||||
// TEXT_HINT_FORMATPARAs, followed by an optional
|
// TEXT_HINT_FORMATPARAs, followed by an optional
|
||||||
// TEXT_HINT_TEXTHEIGHTCHANGED, followed in all cases by one
|
// TEXT_HINT_TEXTHEIGHTCHANGED, followed in all cases by one
|
||||||
// TEXT_HINT_TEXTFORMATTED. Only the TEXT_HINT_FORMATPARAs contain
|
// TEXT_HINT_TEXTFORMATTED. Only the TEXT_HINT_FORMATPARAs contain
|
||||||
// the the numbers of the affected paragraphs, but they are sent
|
// the numbers of the affected paragraphs, but they are sent
|
||||||
// before the changes are applied. Therefore, TEXT_HINT_FORMATPARAs
|
// before the changes are applied. Therefore, TEXT_HINT_FORMATPARAs
|
||||||
// are just buffered until another hint comes in:
|
// are just buffered until another hint comes in:
|
||||||
{
|
{
|
||||||
|
6
android/abs-lib/src/com/actionbarsherlock/internal/nineoldandroids/animation/Keyframe.java
Executable file → Normal file
6
android/abs-lib/src/com/actionbarsherlock/internal/nineoldandroids/animation/Keyframe.java
Executable file → Normal file
@ -70,7 +70,7 @@ public abstract class Keyframe implements Cloneable {
|
|||||||
* @param fraction The time, expressed as a value between 0 and 1, representing the fraction
|
* @param fraction The time, expressed as a value between 0 and 1, representing the fraction
|
||||||
* of time elapsed of the overall animation duration.
|
* of time elapsed of the overall animation duration.
|
||||||
* @param value The value that the object will animate to as the animation time approaches
|
* @param value The value that the object will animate to as the animation time approaches
|
||||||
* the time in this keyframe, and the the value animated from as the time passes the time in
|
* the time in this keyframe, and the value animated from as the time passes the time in
|
||||||
* this keyframe.
|
* this keyframe.
|
||||||
*/
|
*/
|
||||||
public static Keyframe ofInt(float fraction, int value) {
|
public static Keyframe ofInt(float fraction, int value) {
|
||||||
@ -102,7 +102,7 @@ public abstract class Keyframe implements Cloneable {
|
|||||||
* @param fraction The time, expressed as a value between 0 and 1, representing the fraction
|
* @param fraction The time, expressed as a value between 0 and 1, representing the fraction
|
||||||
* of time elapsed of the overall animation duration.
|
* of time elapsed of the overall animation duration.
|
||||||
* @param value The value that the object will animate to as the animation time approaches
|
* @param value The value that the object will animate to as the animation time approaches
|
||||||
* the time in this keyframe, and the the value animated from as the time passes the time in
|
* the time in this keyframe, and the value animated from as the time passes the time in
|
||||||
* this keyframe.
|
* this keyframe.
|
||||||
*/
|
*/
|
||||||
public static Keyframe ofFloat(float fraction, float value) {
|
public static Keyframe ofFloat(float fraction, float value) {
|
||||||
@ -134,7 +134,7 @@ public abstract class Keyframe implements Cloneable {
|
|||||||
* @param fraction The time, expressed as a value between 0 and 1, representing the fraction
|
* @param fraction The time, expressed as a value between 0 and 1, representing the fraction
|
||||||
* of time elapsed of the overall animation duration.
|
* of time elapsed of the overall animation duration.
|
||||||
* @param value The value that the object will animate to as the animation time approaches
|
* @param value The value that the object will animate to as the animation time approaches
|
||||||
* the time in this keyframe, and the the value animated from as the time passes the time in
|
* the time in this keyframe, and the value animated from as the time passes the time in
|
||||||
* this keyframe.
|
* this keyframe.
|
||||||
*/
|
*/
|
||||||
public static Keyframe ofObject(float fraction, Object value) {
|
public static Keyframe ofObject(float fraction, Object value) {
|
||||||
|
2
android/abs-lib/src/com/actionbarsherlock/internal/view/menu/MenuPresenter.java
Executable file → Normal file
2
android/abs-lib/src/com/actionbarsherlock/internal/view/menu/MenuPresenter.java
Executable file → Normal file
@ -88,7 +88,7 @@ public interface MenuPresenter {
|
|||||||
* if applicable the presenter should present the submenu.
|
* if applicable the presenter should present the submenu.
|
||||||
*
|
*
|
||||||
* @param subMenu SubMenu being opened
|
* @param subMenu SubMenu being opened
|
||||||
* @return true if the the event was handled, false otherwise.
|
* @return true if the event was handled, false otherwise.
|
||||||
*/
|
*/
|
||||||
public boolean onSubMenuSelected(SubMenuBuilder subMenu);
|
public boolean onSubMenuSelected(SubMenuBuilder subMenu);
|
||||||
|
|
||||||
|
2
android/abs-lib/src/com/actionbarsherlock/widget/ShareActionProvider.java
Executable file → Normal file
2
android/abs-lib/src/com/actionbarsherlock/widget/ShareActionProvider.java
Executable file → Normal file
@ -100,7 +100,7 @@ public class ShareActionProvider extends ActionProvider {
|
|||||||
private static final int DEFAULT_INITIAL_ACTIVITY_COUNT = 4;
|
private static final int DEFAULT_INITIAL_ACTIVITY_COUNT = 4;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The the maximum number activities shown in the sub-menu.
|
* The maximum number activities shown in the sub-menu.
|
||||||
*/
|
*/
|
||||||
private int mMaxShownActivityCount = DEFAULT_INITIAL_ACTIVITY_COUNT;
|
private int mMaxShownActivityCount = DEFAULT_INITIAL_ACTIVITY_COUNT;
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ APP_PACKAGE=org.libreoffice.android.qa.sc
|
|||||||
# The name of the Bootstrap activity class
|
# The name of the Bootstrap activity class
|
||||||
BOOTSTRAP=org.libreoffice.android.Bootstrap
|
BOOTSTRAP=org.libreoffice.android.Bootstrap
|
||||||
|
|
||||||
# The full path the the app's directory needs to be supplied in a
|
# The full path the app's directory needs to be supplied in a
|
||||||
# couple of places, unfortunately.
|
# couple of places, unfortunately.
|
||||||
|
|
||||||
APP_DATA_PATH=/data/data/$(APP_PACKAGE)
|
APP_DATA_PATH=/data/data/$(APP_PACKAGE)
|
||||||
|
@ -9,7 +9,7 @@ APP_PACKAGE=org.libreoffice.android.qa
|
|||||||
# The name of the Bootstrap activity class
|
# The name of the Bootstrap activity class
|
||||||
BOOTSTRAP=org.libreoffice.android.Bootstrap
|
BOOTSTRAP=org.libreoffice.android.Bootstrap
|
||||||
|
|
||||||
# The full path the the app's directory needs to be supplied in a
|
# The full path the app's directory needs to be supplied in a
|
||||||
# couple of places, unfortunately.
|
# couple of places, unfortunately.
|
||||||
|
|
||||||
APP_DATA_PATH=/data/data/$(APP_PACKAGE)
|
APP_DATA_PATH=/data/data/$(APP_PACKAGE)
|
||||||
|
@ -77,7 +77,7 @@ sub zip_dirtree
|
|||||||
|
|
||||||
# First transfer the drive from $cwd to $zip_name. This is a
|
# First transfer the drive from $cwd to $zip_name. This is a
|
||||||
# workaround for a bug in file_name_is_absolute which thinks
|
# workaround for a bug in file_name_is_absolute which thinks
|
||||||
# the the path \bla is an absolute path under DOS.
|
# the path \bla is an absolute path under DOS.
|
||||||
my ($volume,$directories,$file) = File::Spec->splitpath ($zip_name);
|
my ($volume,$directories,$file) = File::Spec->splitpath ($zip_name);
|
||||||
my ($volume_cwd,$directories_cwd,$file_cwd) = File::Spec->splitpath ($cwd);
|
my ($volume_cwd,$directories_cwd,$file_cwd) = File::Spec->splitpath ($cwd);
|
||||||
$volume = $volume_cwd if ($volume eq "");
|
$volume = $volume_cwd if ($volume eq "");
|
||||||
|
@ -23,7 +23,7 @@ package com.sun.star.comp.beans;
|
|||||||
/** Helper class to watch calls into OOo with a timeout.
|
/** Helper class to watch calls into OOo with a timeout.
|
||||||
*/
|
*/
|
||||||
//Do not add the thread instances to a threadgroup. When testing the bean in
|
//Do not add the thread instances to a threadgroup. When testing the bean in
|
||||||
//an applet it turned out the the ThreadGroup was in an inconsistent state
|
//an applet it turned out the ThreadGroup was in an inconsistent state
|
||||||
//after navigating off the site that contains the applet and back to it.
|
//after navigating off the site that contains the applet and back to it.
|
||||||
//That was tested with a Sun JRE 1.4.2_06
|
//That was tested with a Sun JRE 1.4.2_06
|
||||||
public class CallWatchThread extends Thread
|
public class CallWatchThread extends Thread
|
||||||
|
@ -164,7 +164,7 @@ class ScreenComparer
|
|||||||
|
|
||||||
m_imgDiff = new BufferedImage(w1, h1, BufferedImage.TYPE_INT_ARGB);
|
m_imgDiff = new BufferedImage(w1, h1, BufferedImage.TYPE_INT_ARGB);
|
||||||
|
|
||||||
//First check if the the images differ.
|
//First check if the images differ.
|
||||||
int lenAr = pixels1.length;
|
int lenAr = pixels1.length;
|
||||||
int index = 0;
|
int index = 0;
|
||||||
for (index = 0; index < lenAr; index++)
|
for (index = 0; index < lenAr; index++)
|
||||||
|
@ -173,7 +173,7 @@ namespace cli_uno
|
|||||||
|
|
||||||
//__________________________________________________________________________________________________
|
//__________________________________________________________________________________________________
|
||||||
/** ToDo
|
/** ToDo
|
||||||
I doubt that the the case that the ref count raises from 0 to 1
|
I doubt that the case that the ref count raises from 0 to 1
|
||||||
can occur. uno_ext_getMapping returns an acquired mapping. Every time
|
can occur. uno_ext_getMapping returns an acquired mapping. Every time
|
||||||
that function is called then a new mapping is created. Following the
|
that function is called then a new mapping is created. Following the
|
||||||
rules of ref counted objects, then if the ref count is null noone has
|
rules of ref counted objects, then if the ref count is null noone has
|
||||||
|
@ -65,7 +65,7 @@ public ref class UnoInterfaceProxy: public srrp::RealProxy,
|
|||||||
*/
|
*/
|
||||||
sc::ArrayList^ m_listIfaces;
|
sc::ArrayList^ m_listIfaces;
|
||||||
/** The number of UNO interfaces this proxy represents. It corresponds
|
/** The number of UNO interfaces this proxy represents. It corresponds
|
||||||
to the the number of elements in m_listIfaces.
|
to the number of elements in m_listIfaces.
|
||||||
*/
|
*/
|
||||||
int m_numUnoIfaces;
|
int m_numUnoIfaces;
|
||||||
/** The list is filled with additional UnoInterfaceProxy object due
|
/** The list is filled with additional UnoInterfaceProxy object due
|
||||||
|
@ -42,7 +42,7 @@ namespace comphelper
|
|||||||
> OAccImpl_Base;
|
> OAccImpl_Base;
|
||||||
struct OAccImpl_Impl;
|
struct OAccImpl_Impl;
|
||||||
|
|
||||||
/** This is a helper class which allows accessing several aspects of the the implementation
|
/** This is a helper class which allows accessing several aspects of the implementation
|
||||||
of an AccessibleContext.
|
of an AccessibleContext.
|
||||||
|
|
||||||
<p>For instance, when you want to implement a context which can be re-parented, you:
|
<p>For instance, when you want to implement a context which can be re-parented, you:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// This is just an example file to see what AST looks like for return statements.
|
// This is just an example file to see what AST looks like for return statements.
|
||||||
// To the the AST, run :
|
// To the AST, run :
|
||||||
// clang++ -fsyntax-only -Xclang -ast-dump tutorial1_example.cxx
|
// clang++ -fsyntax-only -Xclang -ast-dump tutorial1_example.cxx
|
||||||
|
|
||||||
void f()
|
void f()
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// This is just an example file to see what AST looks like for return statements.
|
// This is just an example file to see what AST looks like for return statements.
|
||||||
// To the the AST, run :
|
// To the AST, run :
|
||||||
// clang++ -fsyntax-only -Xclang -ast-dump tutorial1_example.cxx
|
// clang++ -fsyntax-only -Xclang -ast-dump tutorial1_example.cxx
|
||||||
|
|
||||||
bool g()
|
bool g()
|
||||||
|
@ -1427,7 +1427,7 @@ AC_ARG_WITH(system-apache-commons,
|
|||||||
AC_ARG_WITH(system-mysql,
|
AC_ARG_WITH(system-mysql,
|
||||||
AS_HELP_STRING([--with-system-mysql],
|
AS_HELP_STRING([--with-system-mysql],
|
||||||
[Use MySQL libraries already on system, for building the MySQL Connector/LibreOffice
|
[Use MySQL libraries already on system, for building the MySQL Connector/LibreOffice
|
||||||
extension. If the the mysql_config executable is not in PATH, use MYSQLCONFIG to
|
extension. If the mysql_config executable is not in PATH, use MYSQLCONFIG to
|
||||||
point to it.]),,
|
point to it.]),,
|
||||||
[with_system_mysql="$with_system_libs"])
|
[with_system_mysql="$with_system_libs"])
|
||||||
|
|
||||||
|
@ -2181,7 +2181,7 @@ void ODbaseTable::alterColumn(sal_Int32 index,
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
OSL_ENSURE(descriptor.is(),"ODbaseTable::alterColumn: descriptor can not be null!");
|
OSL_ENSURE(descriptor.is(),"ODbaseTable::alterColumn: descriptor can not be null!");
|
||||||
// creates a copy of the the original column and copy all properties from descriptor in xCopyColumn
|
// creates a copy of the original column and copy all properties from descriptor in xCopyColumn
|
||||||
Reference<XPropertySet> xCopyColumn;
|
Reference<XPropertySet> xCopyColumn;
|
||||||
if(xOldColumn.is())
|
if(xOldColumn.is())
|
||||||
xCopyColumn = xOldColumn->createDataDescriptor();
|
xCopyColumn = xOldColumn->createDataDescriptor();
|
||||||
|
@ -838,7 +838,7 @@ Reference< XInterface > ORegistryFactoryHelper::createModuleFactory()
|
|||||||
// the location of the program code of the implementation
|
// the location of the program code of the implementation
|
||||||
Reference<XRegistryKey > xLocationKey = xImplementationKey->openKey(
|
Reference<XRegistryKey > xLocationKey = xImplementationKey->openKey(
|
||||||
OUString( RTL_CONSTASCII_USTRINGPARAM("/UNO/URL") ) );
|
OUString( RTL_CONSTASCII_USTRINGPARAM("/UNO/URL") ) );
|
||||||
// is the the key of the right type ?
|
// is the key of the right type ?
|
||||||
if( xLocationKey.is() && xLocationKey->getValueType() == RegistryValueType_ASCII )
|
if( xLocationKey.is() && xLocationKey->getValueType() == RegistryValueType_ASCII )
|
||||||
{
|
{
|
||||||
// one implementation found -> try to activate
|
// one implementation found -> try to activate
|
||||||
|
@ -1371,7 +1371,7 @@ long SentenceEditWindow_Impl::PreNotify( NotifyEvent& rNEvt )
|
|||||||
}
|
}
|
||||||
|
|
||||||
//check previous position if this exists
|
//check previous position if this exists
|
||||||
//that is a redundant in the case the the attribute found above already is on the left cursor side
|
//that is a redundant in the case the attribute found above already is on the left cursor side
|
||||||
//but it's o.k. for two errors/fields side by side
|
//but it's o.k. for two errors/fields side by side
|
||||||
if(aCursor.GetIndex())
|
if(aCursor.GetIndex())
|
||||||
{
|
{
|
||||||
|
@ -120,7 +120,7 @@ String SvxHyphenWordDialog::EraseUnusableHyphens_Impl(
|
|||||||
// If the possible hyphenation position in 'multi-line-editor' are to eb marked
|
// If the possible hyphenation position in 'multi-line-editor' are to eb marked
|
||||||
// by '=' then the text will look like this 'mul=ti-line-ed=it=or'.
|
// by '=' then the text will look like this 'mul=ti-line-ed=it=or'.
|
||||||
// If now the first line is only large enough for 'multi-line-edi' we need to discard
|
// If now the first line is only large enough for 'multi-line-edi' we need to discard
|
||||||
// the last possible hyphnation point because of 1). The the right most valid
|
// the last possible hyphnation point because of 1). The right most valid
|
||||||
// hyphenation position is "ed=itor". The first '-' left of this position is
|
// hyphenation position is "ed=itor". The first '-' left of this position is
|
||||||
// "line-ed", thus because of 2) we now need to discard all possible hyphneation
|
// "line-ed", thus because of 2) we now need to discard all possible hyphneation
|
||||||
// positions to the left of that as well. Thus in the end leaving us with just
|
// positions to the left of that as well. Thus in the end leaving us with just
|
||||||
|
@ -23,7 +23,7 @@ private:
|
|||||||
RadioButton *m_pDefaultBackground; ///< Use the built-in bitmap for Writer background
|
RadioButton *m_pDefaultBackground; ///< Use the built-in bitmap for Writer background
|
||||||
RadioButton *m_pOwnBackground; ///< Use the user-defined bitmap
|
RadioButton *m_pOwnBackground; ///< Use the user-defined bitmap
|
||||||
PushButton *m_pSelectBackground; ///< Let the user select in the 'own' case
|
PushButton *m_pSelectBackground; ///< Let the user select in the 'own' case
|
||||||
OUString m_aBackgroundURL; ///< URL of the the background image in the 'own' case
|
OUString m_aBackgroundURL; ///< URL of the background image in the 'own' case
|
||||||
|
|
||||||
RadioButton *m_pNoPersona; ///< Just the default look, without any bitmap
|
RadioButton *m_pNoPersona; ///< Just the default look, without any bitmap
|
||||||
RadioButton *m_pDefaultPersona; ///< Use the built-in bitmap
|
RadioButton *m_pDefaultPersona; ///< Use the built-in bitmap
|
||||||
|
@ -1250,7 +1250,7 @@ void SvxBackgroundTabPage::ShowBitmapUI_Impl()
|
|||||||
|
|
||||||
/* [Description]
|
/* [Description]
|
||||||
|
|
||||||
Hide the the controls for color settings
|
Hide the controls for color settings
|
||||||
and show controls for editing the bitmap instead.
|
and show controls for editing the bitmap instead.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -543,7 +543,7 @@ public class DatabaseDocument extends TestCase implements com.sun.star.document.
|
|||||||
* created when needed.
|
* created when needed.
|
||||||
* In particular, a document can be closed (this is what happens when the last UI window displaying
|
* In particular, a document can be closed (this is what happens when the last UI window displaying
|
||||||
* this document is closed), and then dies. Now when the other "view", the data source, still exists,
|
* this document is closed), and then dies. Now when the other "view", the data source, still exists,
|
||||||
* the the underlying document data is not discarded, but kept alive (else the data source would die
|
* the underlying document data is not discarded, but kept alive (else the data source would die
|
||||||
* just because the document dies, which is not desired). If the document is loaded, again, then
|
* just because the document dies, which is not desired). If the document is loaded, again, then
|
||||||
* it is re-created, using the data of its previous "incarnation".
|
* it is re-created, using the data of its previous "incarnation".
|
||||||
*
|
*
|
||||||
|
@ -593,7 +593,7 @@ void SAL_CALL OSingleSelectQueryComposer::setElementaryQuery( const OUString& _r
|
|||||||
for ( SQLPart eLoopParts = Where; eLoopParts != SQLPartCount; incSQLPart( eLoopParts ) )
|
for ( SQLPart eLoopParts = Where; eLoopParts != SQLPartCount; incSQLPart( eLoopParts ) )
|
||||||
m_aElementaryParts[ eLoopParts ] = getSQLPart( eLoopParts, m_aSqlIterator, sal_False );
|
m_aElementaryParts[ eLoopParts ] = getSQLPart( eLoopParts, m_aSqlIterator, sal_False );
|
||||||
|
|
||||||
// reset the the AdditiveIterator: m_aPureSelectSQL may have changed
|
// reset the AdditiveIterator: m_aPureSelectSQL may have changed
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
parseAndCheck_throwError( m_aSqlParser, composeStatementFromParts( aAdditiveClauses ), m_aAdditiveIterator, *this );
|
parseAndCheck_throwError( m_aSqlParser, composeStatementFromParts( aAdditiveClauses ), m_aAdditiveIterator, *this );
|
||||||
|
@ -684,7 +684,7 @@ namespace dbmm
|
|||||||
Reference< XStorageBasedDocument > xStorageDoc( _rxDocument, UNO_QUERY_THROW );
|
Reference< XStorageBasedDocument > xStorageDoc( _rxDocument, UNO_QUERY_THROW );
|
||||||
Reference< XStorage > xDocStorage( xStorageDoc->getDocumentStorage(), UNO_QUERY_THROW );
|
Reference< XStorage > xDocStorage( xStorageDoc->getDocumentStorage(), UNO_QUERY_THROW );
|
||||||
|
|
||||||
// the the "Scripts" storage exist, or if it does not (yet) exist and we are in write mode
|
// the "Scripts" storage exist, or if it does not (yet) exist and we are in write mode
|
||||||
// => open the storage
|
// => open the storage
|
||||||
if ( ( xDocStorage->hasByName( lcl_getScriptsStorageName() )
|
if ( ( xDocStorage->hasByName( lcl_getScriptsStorageName() )
|
||||||
&& xDocStorage->isStorageElement( lcl_getScriptsStorageName() )
|
&& xDocStorage->isStorageElement( lcl_getScriptsStorageName() )
|
||||||
|
@ -657,7 +657,7 @@ sal_Bool SbaGridHeader::ImplStartColumnDrag(sal_Int8 _nAction, const Point& _rMo
|
|||||||
}
|
}
|
||||||
if (!bResizingCol)
|
if (!bResizingCol)
|
||||||
{
|
{
|
||||||
// force the the base class to end it's drag mode
|
// force the base class to end it's drag mode
|
||||||
EndTracking(ENDTRACK_CANCEL | ENDTRACK_END);
|
EndTracking(ENDTRACK_CANCEL | ENDTRACK_END);
|
||||||
|
|
||||||
// because we have 3d-buttons the select handler is called from MouseButtonUp, but StartDrag
|
// because we have 3d-buttons the select handler is called from MouseButtonUp, but StartDrag
|
||||||
|
@ -282,7 +282,7 @@ void ODbaseIndexDialog::Init()
|
|||||||
// All indizes are first added to a list of free indizes.
|
// All indizes are first added to a list of free indizes.
|
||||||
// Afterwards, check the index of each table in the Inf-file.
|
// Afterwards, check the index of each table in the Inf-file.
|
||||||
// These indizes are removed from the list of free indizes and
|
// These indizes are removed from the list of free indizes and
|
||||||
// entered in the indexlist of the the table.
|
// entered in the indexlist of the table.
|
||||||
|
|
||||||
// if the string does not contain a path, cut the string
|
// if the string does not contain a path, cut the string
|
||||||
INetURLObject aURL;
|
INetURLObject aURL;
|
||||||
|
@ -276,7 +276,7 @@ namespace dbaui
|
|||||||
//-------------------------------------------------------------------------
|
//-------------------------------------------------------------------------
|
||||||
void OGeneralPage::onTypeSelected(const ::rtl::OUString& _sURLPrefix)
|
void OGeneralPage::onTypeSelected(const ::rtl::OUString& _sURLPrefix)
|
||||||
{
|
{
|
||||||
// the the new URL text as indicated by the selection history
|
// the new URL text as indicated by the selection history
|
||||||
implSetCurrentType( _sURLPrefix );
|
implSetCurrentType( _sURLPrefix );
|
||||||
|
|
||||||
switchMessage(_sURLPrefix);
|
switchMessage(_sURLPrefix);
|
||||||
|
@ -142,7 +142,7 @@ namespace dbaui
|
|||||||
|
|
||||||
void switchMessage(const ::rtl::OUString& _sURLPrefix);
|
void switchMessage(const ::rtl::OUString& _sURLPrefix);
|
||||||
|
|
||||||
/// sets the the title of the parent dialog
|
/// sets the title of the parent dialog
|
||||||
void setParentTitle(const ::rtl::OUString& _sURLPrefix);
|
void setParentTitle(const ::rtl::OUString& _sURLPrefix);
|
||||||
|
|
||||||
DECL_LINK(OnDatasourceTypeSelected, ListBox*);
|
DECL_LINK(OnDatasourceTypeSelected, ListBox*);
|
||||||
|
@ -184,7 +184,7 @@ DBG_NAME(IndexFieldsControl)
|
|||||||
SetUpdateMode(sal_False);
|
SetUpdateMode(sal_False);
|
||||||
// remove all rows
|
// remove all rows
|
||||||
RowRemoved(1, GetRowCount());
|
RowRemoved(1, GetRowCount());
|
||||||
// insert rows for the the fields
|
// insert rows for the fields
|
||||||
RowInserted(GetRowCount(), m_aFields.size(), sal_False);
|
RowInserted(GetRowCount(), m_aFields.size(), sal_False);
|
||||||
// insert an additional row for a new field for that index
|
// insert an additional row for a new field for that index
|
||||||
RowInserted(GetRowCount(), 1, sal_False);
|
RowInserted(GetRowCount(), 1, sal_False);
|
||||||
|
@ -393,7 +393,7 @@ DBG_NAME(OTableSubscriptionPage)
|
|||||||
pExpand = NULL;
|
pExpand = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
// update the toolbox according the the current selection and check state
|
// update the toolbox according the current selection and check state
|
||||||
OGenericAdministrationPage::implInitControls(_rSet, _bSaveValue);
|
OGenericAdministrationPage::implInitControls(_rSet, _bSaveValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,7 +101,7 @@ namespace dbaui
|
|||||||
|
|
||||||
inline ::std::vector< ::boost::shared_ptr<OTableRow> >* getRows() { return &m_vRowList; }
|
inline ::std::vector< ::boost::shared_ptr<OTableRow> >* getRows() { return &m_vRowList; }
|
||||||
|
|
||||||
/// returns the postion of the the first empty row
|
/// returns the postion of the first empty row
|
||||||
sal_Int32 getFirstEmptyRowPosition();
|
sal_Int32 getFirstEmptyRowPosition();
|
||||||
|
|
||||||
inline const OTypeInfoMap* getTypeInfo() const { return &m_aTypeInfo; }
|
inline const OTypeInfoMap* getTypeInfo() const { return &m_aTypeInfo; }
|
||||||
|
@ -308,7 +308,7 @@ void CommandLineArgs::ParseCommandLine_Impl( Supplier& supplier )
|
|||||||
}
|
}
|
||||||
else if ( bConversionParamsEvent && bConversionEvent )
|
else if ( bConversionParamsEvent && bConversionEvent )
|
||||||
{
|
{
|
||||||
// first argument must be the the params
|
// first argument must be the params
|
||||||
m_conversionparams = aArg;
|
m_conversionparams = aArg;
|
||||||
bConversionParamsEvent = false;
|
bConversionParamsEvent = false;
|
||||||
}
|
}
|
||||||
|
@ -465,7 +465,7 @@ OfficeIPCThread::Status OfficeIPCThread::EnableOfficeIPCThread()
|
|||||||
// Try to determine if we are the first office or not! This should prevent multiple
|
// Try to determine if we are the first office or not! This should prevent multiple
|
||||||
// access to the user directory !
|
// access to the user directory !
|
||||||
// First we try to create our pipe if this fails we try to connect. We have to do this
|
// First we try to create our pipe if this fails we try to connect. We have to do this
|
||||||
// in a loop because the the other office can crash or shutdown between createPipe
|
// in a loop because the other office can crash or shutdown between createPipe
|
||||||
// and connectPipe!!
|
// and connectPipe!!
|
||||||
|
|
||||||
OUString aIniName;
|
OUString aIniName;
|
||||||
@ -793,7 +793,7 @@ void OfficeIPCThread::execute()
|
|||||||
|
|
||||||
// #i18338# (lo)
|
// #i18338# (lo)
|
||||||
// we only do this if no document was specified on the command line,
|
// we only do this if no document was specified on the command line,
|
||||||
// since this would be inconsistent with the the behaviour of
|
// since this would be inconsistent with the behaviour of
|
||||||
// the first process, see OpenClients() (call to OpenDefault()) in app.cxx
|
// the first process, see OpenClients() (call to OpenDefault()) in app.cxx
|
||||||
if ( aCmdLineArgs->HasModuleParam() && (!bDocRequestSent) )
|
if ( aCmdLineArgs->HasModuleParam() && (!bDocRequestSent) )
|
||||||
{
|
{
|
||||||
|
@ -315,7 +315,7 @@ protected:
|
|||||||
css::uno::Reference<css::uno::XComponentContext> const & xContext );
|
css::uno::Reference<css::uno::XComponentContext> const & xContext );
|
||||||
|
|
||||||
/* creates a folder with a unique name.
|
/* creates a folder with a unique name.
|
||||||
If url is empty then it is created in the the backend folder, otherwise
|
If url is empty then it is created in the backend folder, otherwise
|
||||||
at a location relative to that folder specified by url.
|
at a location relative to that folder specified by url.
|
||||||
*/
|
*/
|
||||||
::rtl::OUString createFolder(
|
::rtl::OUString createFolder(
|
||||||
|
@ -169,7 +169,7 @@ NEW FEATURES:
|
|||||||
how it works. Any macro that is not a predefined function macro and
|
how it works. Any macro that is not a predefined function macro and
|
||||||
is invoked with parameters is looked up as a user defined function
|
is invoked with parameters is looked up as a user defined function
|
||||||
macro. A new macro scope is created. The n'th argument to the
|
macro. A new macro scope is created. The n'th argument to the
|
||||||
macro is then assigned to the value of the the macro $n where n is 0
|
macro is then assigned to the value of the macro $n where n is 0
|
||||||
for the first argument, 1 for the second argument and so on. The
|
for the first argument, 1 for the second argument and so on. The
|
||||||
argument is expanded before it is assigned. The original macro is
|
argument is expanded before it is assigned. The original macro is
|
||||||
then expanded. For example:
|
then expanded. For example:
|
||||||
|
@ -525,7 +525,7 @@ CELLPTR setdirroot;
|
|||||||
* than one prerequisite. */
|
* than one prerequisite. */
|
||||||
/* A new A_DYNAMIC attribute could save a lot of strchr( ,'$') calls. */
|
/* A new A_DYNAMIC attribute could save a lot of strchr( ,'$') calls. */
|
||||||
if ( tcp && !(tcp->ce_flag & F_MARK) && strchr(tcp->CE_NAME, '$') ) {
|
if ( tcp && !(tcp->ce_flag & F_MARK) && strchr(tcp->CE_NAME, '$') ) {
|
||||||
/* Replace this dynamic prerequisite with the the real prerequisite,
|
/* Replace this dynamic prerequisite with the real prerequisite,
|
||||||
* and add the additional prerequisites if there are more than one.*/
|
* and add the additional prerequisites if there are more than one.*/
|
||||||
|
|
||||||
name = Expand( tcp->CE_NAME );
|
name = Expand( tcp->CE_NAME );
|
||||||
@ -546,7 +546,7 @@ CELLPTR setdirroot;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Dynamic expansion results in a NULL cell only when the the new
|
/* Dynamic expansion results in a NULL cell only when the new
|
||||||
* prerequisite is already in the prerequisite list or empty. In this
|
* prerequisite is already in the prerequisite list or empty. In this
|
||||||
* case delete the cell and continue. */
|
* case delete the cell and continue. */
|
||||||
if ( tcp == NIL(CELL) ) {
|
if ( tcp == NIL(CELL) ) {
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
-- the second group is ideally provided by the C lib. However, there
|
-- the second group is ideally provided by the C lib. However, there
|
||||||
-- are instances where the C lib implementation of the specified routine
|
-- are instances where the C lib implementation of the specified routine
|
||||||
-- does not exist, or is incorrect. In these instances the routine
|
-- does not exist, or is incorrect. In these instances the routine
|
||||||
-- must be provided by the the user in the system/ directory of dmake.
|
-- must be provided by the user in the system/ directory of dmake.
|
||||||
-- (For example, the bsd/ dir contains code for putenv(), and tempnam())
|
-- (For example, the bsd/ dir contains code for putenv(), and tempnam())
|
||||||
--
|
--
|
||||||
-- DMAKE SPECIFIC:
|
-- DMAKE SPECIFIC:
|
||||||
@ -737,7 +737,7 @@ Start_temp( suffix, cp, fname )/*
|
|||||||
created. This is done because the routines that create a save temporary
|
created. This is done because the routines that create a save temporary
|
||||||
file do not provide a definable suffix. The first (provided by Get_temp())
|
file do not provide a definable suffix. The first (provided by Get_temp())
|
||||||
is save and unique and the second file is generated by adding the desired
|
is save and unique and the second file is generated by adding the desired
|
||||||
suffix the the first temporary file. The extra file is also linked to cp
|
suffix the first temporary file. The extra file is also linked to cp
|
||||||
so that it gets removed later.
|
so that it gets removed later.
|
||||||
The function returns the FILE pointer to the temporary file (with suffix
|
The function returns the FILE pointer to the temporary file (with suffix
|
||||||
if specified) and leaves the file name in *fname.
|
if specified) and leaves the file name in *fname.
|
||||||
|
@ -159,7 +159,7 @@ namespace drawinglayer
|
|||||||
virtual basegfx::B2DRange getB2DRange(const geometry::ViewInformation2D& rViewInformation) const;
|
virtual basegfx::B2DRange getB2DRange(const geometry::ViewInformation2D& rViewInformation) const;
|
||||||
|
|
||||||
/** provide unique ID for fast identifying of known primitive implementations in renderers. These use
|
/** provide unique ID for fast identifying of known primitive implementations in renderers. These use
|
||||||
the the defines from drawinglayer_primitivetypes2d.hxx to define unique IDs.
|
the defines from drawinglayer_primitivetypes2d.hxx to define unique IDs.
|
||||||
This method is normally defined using DeclPrimitrive2DIDBlock()
|
This method is normally defined using DeclPrimitrive2DIDBlock()
|
||||||
*/
|
*/
|
||||||
virtual sal_uInt32 getPrimitive2DID() const = 0;
|
virtual sal_uInt32 getPrimitive2DID() const = 0;
|
||||||
|
@ -103,7 +103,7 @@ namespace drawinglayer
|
|||||||
virtual basegfx::B3DRange getB3DRange(const geometry::ViewInformation3D& rViewInformation) const;
|
virtual basegfx::B3DRange getB3DRange(const geometry::ViewInformation3D& rViewInformation) const;
|
||||||
|
|
||||||
/** provide unique ID for fast identifying of known primitive implementations in renderers. These use
|
/** provide unique ID for fast identifying of known primitive implementations in renderers. These use
|
||||||
the the defines from primitivetypes3d.hxx to define unique IDs.
|
the defines from primitivetypes3d.hxx to define unique IDs.
|
||||||
*/
|
*/
|
||||||
virtual sal_uInt32 getPrimitive3DID() const = 0;
|
virtual sal_uInt32 getPrimitive3DID() const = 0;
|
||||||
|
|
||||||
|
@ -641,7 +641,7 @@ void DropTarget::_rejectDrag( const Reference<XDropTargetDragContext>& context)
|
|||||||
// is then checked against the allowed actions which can be set through
|
// is then checked against the allowed actions which can be set through
|
||||||
// XDropTarget::setDefaultActions. Only those values which are also
|
// XDropTarget::setDefaultActions. Only those values which are also
|
||||||
// default actions are returned. If setDefaultActions has not been called
|
// default actions are returned. If setDefaultActions has not been called
|
||||||
// beforehand the the default actions comprise all possible actions.
|
// beforehand the default actions comprise all possible actions.
|
||||||
// params: grfKeyState - the modifier keys and mouse buttons currently pressed
|
// params: grfKeyState - the modifier keys and mouse buttons currently pressed
|
||||||
inline sal_Int8 DropTarget::getFilteredActions( DWORD grfKeyState, DWORD dwEffect)
|
inline sal_Int8 DropTarget::getFilteredActions( DWORD grfKeyState, DWORD dwEffect)
|
||||||
{
|
{
|
||||||
|
@ -361,7 +361,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
StringOrigin meDescriptionOrigin;
|
StringOrigin meDescriptionOrigin;
|
||||||
|
|
||||||
/** Name of this object. It changes according the the draw page's
|
/** Name of this object. It changes according the draw page's
|
||||||
display mode.
|
display mode.
|
||||||
*/
|
*/
|
||||||
::rtl::OUString msName;
|
::rtl::OUString msName;
|
||||||
|
@ -73,7 +73,7 @@ namespace accessibility
|
|||||||
/// Create accessible object for given parent
|
/// Create accessible object for given parent
|
||||||
// #i27138#
|
// #i27138#
|
||||||
// - add parameter <_pParaManager> (default value NULL)
|
// - add parameter <_pParaManager> (default value NULL)
|
||||||
// This has to be the the instance of <AccessibleParaManager>, which
|
// This has to be the instance of <AccessibleParaManager>, which
|
||||||
// created and manages this accessible paragraph.
|
// created and manages this accessible paragraph.
|
||||||
AccessibleEditableTextPara ( const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >& rParent,
|
AccessibleEditableTextPara ( const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >& rParent,
|
||||||
const AccessibleParaManager* _pParaManager = NULL );
|
const AccessibleParaManager* _pParaManager = NULL );
|
||||||
|
@ -345,7 +345,7 @@ void SvxSpellWrapper::StartThesaurus( const String &rWord, sal_uInt16 nLanguage
|
|||||||
// -----------------------------------------------------------------------
|
// -----------------------------------------------------------------------
|
||||||
|
|
||||||
void SvxSpellWrapper::ReplaceAll( const String &, sal_Int16 )
|
void SvxSpellWrapper::ReplaceAll( const String &, sal_Int16 )
|
||||||
{ // Replace Word from the the Replace list
|
{ // Replace Word from the Replace list
|
||||||
}
|
}
|
||||||
|
|
||||||
// -----------------------------------------------------------------------
|
// -----------------------------------------------------------------------
|
||||||
|
@ -174,7 +174,7 @@ class OleEmbeddedObject : public ::cppu::WeakImplHelper5
|
|||||||
// link related stuff
|
// link related stuff
|
||||||
::rtl::OUString m_aLinkURL; // ???
|
::rtl::OUString m_aLinkURL; // ???
|
||||||
|
|
||||||
// points to own view provider if the the object has no server
|
// points to own view provider if the object has no server
|
||||||
OwnView_Impl* m_pOwnView;
|
OwnView_Impl* m_pOwnView;
|
||||||
|
|
||||||
// whether the object should be initialized from clipboard in case of default initialization
|
// whether the object should be initialized from clipboard in case of default initialization
|
||||||
|
@ -103,7 +103,7 @@ namespace abp
|
|||||||
const ::rtl::OUString& _rTableName
|
const ::rtl::OUString& _rTableName
|
||||||
) SAL_THROW ( ( ) );
|
) SAL_THROW ( ( ) );
|
||||||
|
|
||||||
/** writes the configuration entry which states the the pilot has been completed successfully
|
/** writes the configuration entry which states the pilot has been completed successfully
|
||||||
*/
|
*/
|
||||||
void markPilotSuccess(
|
void markPilotSuccess(
|
||||||
const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext
|
const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext
|
||||||
|
@ -1311,7 +1311,7 @@ Reference< awt::XControlModel > BibDataManager::createGridModel(const ::rtl::OUS
|
|||||||
Any aAny; aAny <<= aControlName;
|
Any aAny; aAny <<= aControlName;
|
||||||
xPropSet->setPropertyValue( "DefaultControl",aAny );
|
xPropSet->setPropertyValue( "DefaultControl",aAny );
|
||||||
|
|
||||||
// the the helpURL
|
// the helpURL
|
||||||
::rtl::OUString uProp("HelpURL");
|
::rtl::OUString uProp("HelpURL");
|
||||||
Reference< XPropertySetInfo > xPropInfo = xPropSet->getPropertySetInfo();
|
Reference< XPropertySetInfo > xPropInfo = xPropSet->getPropertySetInfo();
|
||||||
if (xPropInfo->hasPropertyByName(uProp))
|
if (xPropInfo->hasPropertyByName(uProp))
|
||||||
|
@ -1237,7 +1237,7 @@ Any IUnknownWrapper_Impl::invokeWithDispIdUnoTlb(const OUString& sFunctionName,
|
|||||||
void SAL_CALL IUnknownWrapper_Impl::initialize( const Sequence< Any >& aArguments ) throw(Exception, RuntimeException)
|
void SAL_CALL IUnknownWrapper_Impl::initialize( const Sequence< Any >& aArguments ) throw(Exception, RuntimeException)
|
||||||
{
|
{
|
||||||
// 1.parameter is IUnknown
|
// 1.parameter is IUnknown
|
||||||
// 2.parameter is a boolean which indicates if the the COM pointer was a IUnknown or IDispatch
|
// 2.parameter is a boolean which indicates if the COM pointer was a IUnknown or IDispatch
|
||||||
// 3.parameter is a Sequence<Type>
|
// 3.parameter is a Sequence<Type>
|
||||||
o2u_attachCurrentThread();
|
o2u_attachCurrentThread();
|
||||||
OSL_ASSERT(aArguments.getLength() == 3);
|
OSL_ASSERT(aArguments.getLength() == 3);
|
||||||
|
@ -122,7 +122,7 @@ namespace pcr
|
|||||||
m_pControlWindow->SetSizePixel(aComboBox.GetSizePixel());
|
m_pControlWindow->SetSizePixel(aComboBox.GetSizePixel());
|
||||||
|
|
||||||
// TODO/UNOize: why do the controls this themselves? Shouldn't this be the task
|
// TODO/UNOize: why do the controls this themselves? Shouldn't this be the task
|
||||||
// of the the browser listbox/line?
|
// of the browser listbox/line?
|
||||||
}
|
}
|
||||||
|
|
||||||
//------------------------------------------------------------------
|
//------------------------------------------------------------------
|
||||||
|
@ -81,7 +81,7 @@
|
|||||||
To access contents of a office file (content like the meta.xml, styles.xml file or graphics) a URL could be choosen.
|
To access contents of a office file (content like the meta.xml, styles.xml file or graphics) a URL could be choosen.
|
||||||
This could be even a JAR URL. The sourceBase of the content URL "jar:file:/C:/temp/Test.sxw!/content.xml" would be
|
This could be even a JAR URL. The sourceBase of the content URL "jar:file:/C:/temp/Test.sxw!/content.xml" would be
|
||||||
"jar:file:/C:/temp/Test.sxw!/" for example.
|
"jar:file:/C:/temp/Test.sxw!/" for example.
|
||||||
When working with OpenOffice API a Package-URL encoded over HTTP can be used to access the jared contents of the the jared document. -->
|
When working with OpenOffice API a Package-URL encoded over HTTP can be used to access the jared contents of the jared document. -->
|
||||||
<xsl:param name="sourceBaseURL" select="'./'" />
|
<xsl:param name="sourceBaseURL" select="'./'" />
|
||||||
|
|
||||||
<!-- OPTIONAL: (MANDATORY: for session management by URL rewriting)
|
<!-- OPTIONAL: (MANDATORY: for session management by URL rewriting)
|
||||||
|
@ -93,7 +93,7 @@
|
|||||||
To access contents of a office file (content like the meta.xml, styles.xml file or graphics) a URL could be choosen.
|
To access contents of a office file (content like the meta.xml, styles.xml file or graphics) a URL could be choosen.
|
||||||
This could be even a JAR URL. The sourceBase of the content URL "jar:file:/C:/temp/Test.sxw!/content.xml" would be
|
This could be even a JAR URL. The sourceBase of the content URL "jar:file:/C:/temp/Test.sxw!/content.xml" would be
|
||||||
"jar:file:/C:/temp/Test.sxw!/" for example.
|
"jar:file:/C:/temp/Test.sxw!/" for example.
|
||||||
When working with OpenOffice API a Package-URL encoded over HTTP can be used to access the jared contents of the the jared document. -->
|
When working with OpenOffice API a Package-URL encoded over HTTP can be used to access the jared contents of the jared document. -->
|
||||||
<xsl:param name="sourceBaseURL" select="'./'" />
|
<xsl:param name="sourceBaseURL" select="'./'" />
|
||||||
|
|
||||||
<!-- OPTIONAL: (MANDATORY: for session management by URL rewriting)
|
<!-- OPTIONAL: (MANDATORY: for session management by URL rewriting)
|
||||||
|
@ -2331,7 +2331,7 @@ void OBoundControlModel::doSetControlValue( const Any& _rValue )
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// release our mutex once (it's acquired in one of the the calling methods), as setting aggregate properties
|
// release our mutex once (it's acquired in one of the calling methods), as setting aggregate properties
|
||||||
// may cause any uno controls belonging to us to lock the solar mutex, which is potentially dangerous with
|
// may cause any uno controls belonging to us to lock the solar mutex, which is potentially dangerous with
|
||||||
// our own mutex locked
|
// our own mutex locked
|
||||||
MutexRelease aRelease( m_aMutex );
|
MutexRelease aRelease( m_aMutex );
|
||||||
|
@ -1122,7 +1122,7 @@ Any OFormattedModel::translateControlValueToExternalValue( ) const
|
|||||||
|
|
||||||
Any aExternalValue;
|
Any aExternalValue;
|
||||||
|
|
||||||
// translate into the the external value type
|
// translate into the external value type
|
||||||
Type aExternalValueType( getExternalValueType() );
|
Type aExternalValueType( getExternalValueType() );
|
||||||
switch ( aExternalValueType.getTypeClass() )
|
switch ( aExternalValueType.getTypeClass() )
|
||||||
{
|
{
|
||||||
|
@ -43,7 +43,7 @@ namespace frm
|
|||||||
we need to ensure that the state does not contradict the model property "too much".
|
we need to ensure that the state does not contradict the model property "too much".
|
||||||
|
|
||||||
As an example, consider a form control which, according to its model's property, is disabled.
|
As an example, consider a form control which, according to its model's property, is disabled.
|
||||||
Now when the parent VCL window of the control's VCL window is enabled, then the the control's
|
Now when the parent VCL window of the control's VCL window is enabled, then the control's
|
||||||
window is enabled, too - which contradicts the model property.
|
window is enabled, too - which contradicts the model property.
|
||||||
|
|
||||||
A WindowStateGuard helps you preventing such inconsistent states.
|
A WindowStateGuard helps you preventing such inconsistent states.
|
||||||
|
@ -153,7 +153,7 @@ void SAL_CALL CAsyncEventNotifier::shutdown()
|
|||||||
m_bRun = false;
|
m_bRun = false;
|
||||||
m_EventList.clear();
|
m_EventList.clear();
|
||||||
|
|
||||||
// awake the the notifier thread
|
// awake the notifier thread
|
||||||
SetEvent(m_ResumeNotifying);
|
SetEvent(m_ResumeNotifying);
|
||||||
SetEvent(m_NotifyEvent);
|
SetEvent(m_NotifyEvent);
|
||||||
|
|
||||||
|
@ -2482,7 +2482,7 @@ sal_Bool LayoutManager::implts_resizeContainerWindow( const awt::Size& rContaine
|
|||||||
if (( rContainerSize.Width > aWorkArea.GetWidth() ) || ( rContainerSize.Height > aWorkArea.GetHeight() ))
|
if (( rContainerSize.Width > aWorkArea.GetWidth() ) || ( rContainerSize.Height > aWorkArea.GetHeight() ))
|
||||||
return sal_False;
|
return sal_False;
|
||||||
// Strictly, this is not correct. If we have a multi-screen display (css.awt.DisplayAccess.MultiDisplay == true),
|
// Strictly, this is not correct. If we have a multi-screen display (css.awt.DisplayAccess.MultiDisplay == true),
|
||||||
// the the "effective work area" would be much larger than the work area of a single display, since we could in theory
|
// the "effective work area" would be much larger than the work area of a single display, since we could in theory
|
||||||
// position the container window across multiple screens.
|
// position the container window across multiple screens.
|
||||||
// However, this should suffice as a heuristics here ... (nobody really wants to check whether the different screens are
|
// However, this should suffice as a heuristics here ... (nobody really wants to check whether the different screens are
|
||||||
// stacked horizontally or vertically, whether their work areas can really be combined, or are separated by non-work-areas,
|
// stacked horizontally or vertically, whether their work areas can really be combined, or are separated by non-work-areas,
|
||||||
|
@ -99,13 +99,13 @@ void TestBreakIterator::testLineBreaking()
|
|||||||
{
|
{
|
||||||
//Here we want the line break to leave text here) on the next line
|
//Here we want the line break to leave text here) on the next line
|
||||||
i18n::LineBreakResults aResult = m_xBreak->getLineBreak(aTest, strlen("(some tex"), aLocale, 0, aHyphOptions, aUserOptions);
|
i18n::LineBreakResults aResult = m_xBreak->getLineBreak(aTest, strlen("(some tex"), aLocale, 0, aHyphOptions, aUserOptions);
|
||||||
CPPUNIT_ASSERT_MESSAGE("Expected a break at the the start of the word", aResult.breakIndex == 6);
|
CPPUNIT_ASSERT_MESSAGE("Expected a break at the start of the word", aResult.breakIndex == 6);
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
//Here we want the line break to leave "here)" on the next line
|
//Here we want the line break to leave "here)" on the next line
|
||||||
i18n::LineBreakResults aResult = m_xBreak->getLineBreak(aTest, strlen("(some text here"), aLocale, 0, aHyphOptions, aUserOptions);
|
i18n::LineBreakResults aResult = m_xBreak->getLineBreak(aTest, strlen("(some text here"), aLocale, 0, aHyphOptions, aUserOptions);
|
||||||
CPPUNIT_ASSERT_MESSAGE("Expected a break at the the start of the word", aResult.breakIndex == 11);
|
CPPUNIT_ASSERT_MESSAGE("Expected a break at the start of the word", aResult.breakIndex == 11);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -121,7 +121,7 @@ void TestBreakIterator::testLineBreaking()
|
|||||||
{
|
{
|
||||||
//Here we want the line break to happen at the whitespace
|
//Here we want the line break to happen at the whitespace
|
||||||
i18n::LineBreakResults aResult = m_xBreak->getLineBreak(aTest, aTest.getLength()-1, aLocale, 0, aHyphOptions, aUserOptions);
|
i18n::LineBreakResults aResult = m_xBreak->getLineBreak(aTest, aTest.getLength()-1, aLocale, 0, aHyphOptions, aUserOptions);
|
||||||
CPPUNIT_ASSERT_MESSAGE("Expected a break at the the start of the word", aResult.breakIndex == aWord.getLength()+1);
|
CPPUNIT_ASSERT_MESSAGE("Expected a break at the start of the word", aResult.breakIndex == aWord.getLength()+1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -410,7 +410,7 @@ SFPCatalog Catalog N Binary SFP Catalog
|
|||||||
SFPCatalog Dependency Y Formatted Parent catalog - only used by SFP
|
SFPCatalog Dependency Y Formatted Parent catalog - only used by SFP
|
||||||
SFPCatalog SFPCatalog N Filename File name for the catalog.
|
SFPCatalog SFPCatalog N Filename File name for the catalog.
|
||||||
Shortcut Arguments Y Formatted The command-line arguments for the shortcut.
|
Shortcut Arguments Y Formatted The command-line arguments for the shortcut.
|
||||||
Shortcut Component_ N Component 1 Identifier Foreign key into the Component table denoting the component whose selection gates the the shortcut creation/deletion.
|
Shortcut Component_ N Component 1 Identifier Foreign key into the Component table denoting the component whose selection gates the shortcut creation/deletion.
|
||||||
Shortcut Description Y Text The description for the shortcut.
|
Shortcut Description Y Text The description for the shortcut.
|
||||||
Shortcut Directory_ N Directory 1 Identifier Foreign key into the Directory table denoting the directory where the shortcut file is created.
|
Shortcut Directory_ N Directory 1 Identifier Foreign key into the Directory table denoting the directory where the shortcut file is created.
|
||||||
Shortcut Hotkey Y 0 32767 The hotkey for the shortcut. It has the virtual-key code for the key in the low-order byte, and the modifier flags in the high-order byte.
|
Shortcut Hotkey Y 0 32767 The hotkey for the shortcut. It has the virtual-key code for the key in the low-order byte, and the modifier flags in the high-order byte.
|
||||||
|
@ -409,7 +409,7 @@ SFPCatalog Catalog N Binary SFP Catalog
|
|||||||
SFPCatalog Dependency Y Formatted Parent catalog - only used by SFP
|
SFPCatalog Dependency Y Formatted Parent catalog - only used by SFP
|
||||||
SFPCatalog SFPCatalog N Filename File name for the catalog.
|
SFPCatalog SFPCatalog N Filename File name for the catalog.
|
||||||
Shortcut Arguments Y Formatted The command-line arguments for the shortcut.
|
Shortcut Arguments Y Formatted The command-line arguments for the shortcut.
|
||||||
Shortcut Component_ N Component 1 Identifier Foreign key into the Component table denoting the component whose selection gates the the shortcut creation/deletion.
|
Shortcut Component_ N Component 1 Identifier Foreign key into the Component table denoting the component whose selection gates the shortcut creation/deletion.
|
||||||
Shortcut Description Y Text The description for the shortcut.
|
Shortcut Description Y Text The description for the shortcut.
|
||||||
Shortcut Directory_ N Directory 1 Identifier Foreign key into the Directory table denoting the directory where the shortcut file is created.
|
Shortcut Directory_ N Directory 1 Identifier Foreign key into the Directory table denoting the directory where the shortcut file is created.
|
||||||
Shortcut Hotkey Y 0 32767 The hotkey for the shortcut. It has the virtual-key code for the key in the low-order byte, and the modifier flags in the high-order byte.
|
Shortcut Hotkey Y 0 32767 The hotkey for the shortcut. It has the virtual-key code for the key in the low-order byte, and the modifier flags in the high-order byte.
|
||||||
|
@ -410,7 +410,7 @@ SFPCatalog Catalog N Binary SFP Catalog
|
|||||||
SFPCatalog Dependency Y Formatted Parent catalog - only used by SFP
|
SFPCatalog Dependency Y Formatted Parent catalog - only used by SFP
|
||||||
SFPCatalog SFPCatalog N Filename File name for the catalog.
|
SFPCatalog SFPCatalog N Filename File name for the catalog.
|
||||||
Shortcut Arguments Y Formatted The command-line arguments for the shortcut.
|
Shortcut Arguments Y Formatted The command-line arguments for the shortcut.
|
||||||
Shortcut Component_ N Component 1 Identifier Foreign key into the Component table denoting the component whose selection gates the the shortcut creation/deletion.
|
Shortcut Component_ N Component 1 Identifier Foreign key into the Component table denoting the component whose selection gates the shortcut creation/deletion.
|
||||||
Shortcut Description Y Text The description for the shortcut.
|
Shortcut Description Y Text The description for the shortcut.
|
||||||
Shortcut Directory_ N Directory 1 Identifier Foreign key into the Directory table denoting the directory where the shortcut file is created.
|
Shortcut Directory_ N Directory 1 Identifier Foreign key into the Directory table denoting the directory where the shortcut file is created.
|
||||||
Shortcut Hotkey Y 0 32767 The hotkey for the shortcut. It has the virtual-key code for the key in the low-order byte, and the modifier flags in the high-order byte.
|
Shortcut Hotkey Y 0 32767 The hotkey for the shortcut. It has the virtual-key code for the key in the low-order byte, and the modifier flags in the high-order byte.
|
||||||
|
@ -595,7 +595,7 @@ XMultiPropertySet
|
|||||||
* If a member is an UNO interface, then <em>setVal</em> is queried for this interface and the result is returned.
|
* If a member is an UNO interface, then <em>setVal</em> is queried for this interface and the result is returned.
|
||||||
* If <em>setVal</em> is null then <em>newVal</em> will be null too after return.
|
* If <em>setVal</em> is null then <em>newVal</em> will be null too after return.
|
||||||
* <p>
|
* <p>
|
||||||
* If a property value is stored using a primitive type the the out-parameters
|
* If a property value is stored using a primitive type the out-parameters
|
||||||
* <em>curVal</em> and <em>newVal</em> contain the respective wrapper class (e.g.java.lang.Byte, etc.).
|
* <em>curVal</em> and <em>newVal</em> contain the respective wrapper class (e.g.java.lang.Byte, etc.).
|
||||||
* curVal is used in calls to the XVetoableChangeListener and XPropertyChangeListener.
|
* curVal is used in calls to the XVetoableChangeListener and XPropertyChangeListener.
|
||||||
*
|
*
|
||||||
|
@ -26,7 +26,7 @@ import java.util.LinkedList;
|
|||||||
|
|
||||||
/** An XAdapter implementation that holds a weak reference (java.lang.ref.WeakReference)
|
/** An XAdapter implementation that holds a weak reference (java.lang.ref.WeakReference)
|
||||||
* to an object. Clients can register listener (com.sun.star.lang.XReference) which
|
* to an object. Clients can register listener (com.sun.star.lang.XReference) which
|
||||||
* are notified when the the object (the one which is kept weak) is being finalized. That
|
* are notified when the object (the one which is kept weak) is being finalized. That
|
||||||
* is, that object is being destroyed because there are not any hard references
|
* is, that object is being destroyed because there are not any hard references
|
||||||
* to it.
|
* to it.
|
||||||
*/
|
*/
|
||||||
|
@ -1305,7 +1305,7 @@ class TestClass extends PropertySet
|
|||||||
r[i++]= ((Boolean)value).booleanValue() == ((Boolean) outNewVal[0]).booleanValue();
|
r[i++]= ((Boolean)value).booleanValue() == ((Boolean) outNewVal[0]).booleanValue();
|
||||||
r[i++]= convertPropertyValue(propBoolC, outNewVal, outOldVal, value);
|
r[i++]= convertPropertyValue(propBoolC, outNewVal, outOldVal, value);
|
||||||
r[i++]= ((Boolean)value).booleanValue() == ((Boolean) outNewVal[0]).booleanValue();
|
r[i++]= ((Boolean)value).booleanValue() == ((Boolean) outNewVal[0]).booleanValue();
|
||||||
// must fail because the the member boolPropD is private
|
// must fail because the member boolPropD is private
|
||||||
try{
|
try{
|
||||||
convertPropertyValue(propBoolD, outNewVal, outOldVal, value);
|
convertPropertyValue(propBoolD, outNewVal, outOldVal, value);
|
||||||
i++;
|
i++;
|
||||||
@ -1411,7 +1411,7 @@ class TestClass extends PropertySet
|
|||||||
r[i++]= boolPropB == ((Boolean) value).booleanValue();
|
r[i++]= boolPropB == ((Boolean) value).booleanValue();
|
||||||
setPropertyValueNoBroadcast(propBoolC, value);
|
setPropertyValueNoBroadcast(propBoolC, value);
|
||||||
r[i++]= boolPropC == ((Boolean) value).booleanValue();
|
r[i++]= boolPropC == ((Boolean) value).booleanValue();
|
||||||
// must fail because the the member boolPropD is private
|
// must fail because the member boolPropD is private
|
||||||
try{
|
try{
|
||||||
setPropertyValueNoBroadcast(propBoolD, value);
|
setPropertyValueNoBroadcast(propBoolD, value);
|
||||||
}catch(com.sun.star.lang.WrappedTargetException e)
|
}catch(com.sun.star.lang.WrappedTargetException e)
|
||||||
|
@ -290,7 +290,7 @@ public class ServiceManager implements XMultiServiceFactory,
|
|||||||
/**
|
/**
|
||||||
* Look up the factory for a given service or implementation name.
|
* Look up the factory for a given service or implementation name.
|
||||||
* First the requested service name is search in the list of avaible services. If it can not be found
|
* First the requested service name is search in the list of avaible services. If it can not be found
|
||||||
* the name is looked up in the the implementation list.
|
* the name is looked up in the implementation list.
|
||||||
* <p>
|
* <p>
|
||||||
* @return the factory of the service / implementation
|
* @return the factory of the service / implementation
|
||||||
* @param serviceName indicates the service or implementation name
|
* @param serviceName indicates the service or implementation name
|
||||||
|
@ -302,7 +302,7 @@ JVMFWK_DLLPUBLIC sal_Bool SAL_CALL jfw_areEqualJavaInfo(
|
|||||||
|
|
||||||
/** determines if a Java Virtual Machine is already running.
|
/** determines if a Java Virtual Machine is already running.
|
||||||
|
|
||||||
<p>As long as the the office and the JREs only support one
|
<p>As long as the office and the JREs only support one
|
||||||
Virtual Machine per process the Java settings, particulary the
|
Virtual Machine per process the Java settings, particulary the
|
||||||
selected Java, are not effective immediatly after changing when
|
selected Java, are not effective immediatly after changing when
|
||||||
a VM has already been running. That is, if a JRE A was used to start
|
a VM has already been running. That is, if a JRE A was used to start
|
||||||
|
@ -31,7 +31,7 @@ class VendorBase;
|
|||||||
std::vector<rtl::OUString> getVectorFromCharArray(char const * const * ar, int size);
|
std::vector<rtl::OUString> getVectorFromCharArray(char const * const * ar, int size);
|
||||||
|
|
||||||
/* The function uses the relative paths, such as "bin/java.exe" and the provided
|
/* The function uses the relative paths, such as "bin/java.exe" and the provided
|
||||||
path to derive the the home directory. The home directory is then used as
|
path to derive the home directory. The home directory is then used as
|
||||||
argument to getJREInfoByPath. For example usBinDir is
|
argument to getJREInfoByPath. For example usBinDir is
|
||||||
file:///c:/j2sdk/jre/bin then file:///c:/j2sdk/jre would be derived.
|
file:///c:/j2sdk/jre/bin then file:///c:/j2sdk/jre would be derived.
|
||||||
*/
|
*/
|
||||||
|
@ -134,7 +134,7 @@ private:
|
|||||||
bool createSettingsDocument() const;
|
bool createSettingsDocument() const;
|
||||||
|
|
||||||
/** returns the system path to the data file which is to be used. The value
|
/** returns the system path to the data file which is to be used. The value
|
||||||
depends on the the member m_layer and the bootstrap parameters
|
depends on the member m_layer and the bootstrap parameters
|
||||||
UNO_JAVA_JFW_USER_DATA and UNO_JAVA_JFW_SHARED_DATA.
|
UNO_JAVA_JFW_USER_DATA and UNO_JAVA_JFW_SHARED_DATA.
|
||||||
*/
|
*/
|
||||||
::rtl::OString getSettingsPath() const;
|
::rtl::OString getSettingsPath() const;
|
||||||
|
@ -954,7 +954,7 @@ void SimpleXMLParser::StartElement(
|
|||||||
void SimpleXMLParser::EndElement( const XML_Char *name )
|
void SimpleXMLParser::EndElement( const XML_Char *name )
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
{
|
{
|
||||||
// This variable is not used at all, but the the sax C interface can't be changed
|
// This variable is not used at all, but the sax C interface can't be changed
|
||||||
// To prevent warnings this dummy assignment is used
|
// To prevent warnings this dummy assignment is used
|
||||||
// +++
|
// +++
|
||||||
(void) name;
|
(void) name;
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
- /* sanitize filename starting with // so it can be used as URI */
|
- /* sanitize filename starting with // so it can be used as URI */
|
||||||
+#if defined(_WIN32)
|
+#if defined(_WIN32)
|
||||||
+ //We must not change the backslashes to slashes if the the path starts with
|
+ //We must not change the backslashes to slashes if the path starts with
|
||||||
+ // \\?\
|
+ // \\?\
|
||||||
+ //Those paths can be up to 32k characters long.
|
+ //Those paths can be up to 32k characters long.
|
||||||
+ len = xmlStrlen(path);
|
+ len = xmlStrlen(path);
|
||||||
|
@ -85,7 +85,7 @@ const sal_Int32 MAXCHARS = 65534;
|
|||||||
// information is currently imported.
|
// information is currently imported.
|
||||||
// To reflect the current state of this importer the sax events sent
|
// To reflect the current state of this importer the sax events sent
|
||||||
// to the document handler are also the simplest possible. In addition to
|
// to the document handler are also the simplest possible. In addition to
|
||||||
// the the basic attributes set up for the 'office:document' element
|
// the basic attributes set up for the 'office:document' element
|
||||||
// all the imported text is inserted into 'text:p' elements.
|
// all the imported text is inserted into 'text:p' elements.
|
||||||
// The parser extracts the pure text and creates simple a simple 'text:p'
|
// The parser extracts the pure text and creates simple a simple 'text:p'
|
||||||
// element to contain that text. In the event of the text exceeding
|
// element to contain that text. In the event of the text exceeding
|
||||||
|
@ -43,7 +43,7 @@ namespace connectivity
|
|||||||
{
|
{
|
||||||
struct OTypeInfo
|
struct OTypeInfo
|
||||||
{
|
{
|
||||||
::rtl::OUString aTypeName; // Name of the the type in the database
|
::rtl::OUString aTypeName; // Name of the type in the database
|
||||||
::rtl::OUString aLiteralPrefix; // Prefix for literals
|
::rtl::OUString aLiteralPrefix; // Prefix for literals
|
||||||
::rtl::OUString aLiteralSuffix; // Suffix for literals
|
::rtl::OUString aLiteralSuffix; // Suffix for literals
|
||||||
::rtl::OUString aCreateParams; // Parameters to create
|
::rtl::OUString aCreateParams; // Parameters to create
|
||||||
|
@ -330,7 +330,7 @@ public class FunctionHelper
|
|||||||
* It use a special JNI functionality to pass the office XWindow over a java window.
|
* It use a special JNI functionality to pass the office XWindow over a java window.
|
||||||
* This java window can be inserted into another java window container for complex layouting.
|
* This java window can be inserted into another java window container for complex layouting.
|
||||||
* If this parent java window isn't used, a top level system window will be created.
|
* If this parent java window isn't used, a top level system window will be created.
|
||||||
* The the resulting office frame isn't plugged into this java application.
|
* The resulting office frame isn't plugged into this java application.
|
||||||
*
|
*
|
||||||
* @param sName
|
* @param sName
|
||||||
* name to set it on the new created frame
|
* name to set it on the new created frame
|
||||||
|
@ -31,7 +31,7 @@ Simple usage scenario:
|
|||||||
Data->DataPilot->Start...
|
Data->DataPilot->Start...
|
||||||
5. select "External source/interface -> Ok
|
5. select "External source/interface -> Ok
|
||||||
6. select the example DataPilot
|
6. select the example DataPilot
|
||||||
Use the the drop down list and select the service
|
Use the drop down list and select the service
|
||||||
"ExampleDataPilotSource" -> Ok
|
"ExampleDataPilotSource" -> Ok
|
||||||
7. Place some number fields in the field areas
|
7. Place some number fields in the field areas
|
||||||
For example:
|
For example:
|
||||||
|
@ -120,7 +120,7 @@ public class SCalc {
|
|||||||
|
|
||||||
//oooooooooooooooooooooooooooStep 3oooooooooooooooooooooooooooooooooooooooooo
|
//oooooooooooooooooooooooooooStep 3oooooooooooooooooooooooooooooooooooooooooo
|
||||||
// create cell styles.
|
// create cell styles.
|
||||||
// For this purpose get the StyleFamiliesSupplier and the the familiy
|
// For this purpose get the StyleFamiliesSupplier and the familiy
|
||||||
// CellStyle. Create an instance of com.sun.star.style.CellStyle and
|
// CellStyle. Create an instance of com.sun.star.style.CellStyle and
|
||||||
// add it to the family. Now change some properties
|
// add it to the family. Now change some properties
|
||||||
//***************************************************************************
|
//***************************************************************************
|
||||||
@ -342,7 +342,7 @@ public class SCalc {
|
|||||||
// get the servie manager rom the office
|
// get the servie manager rom the office
|
||||||
xMCF = xContext.getServiceManager();
|
xMCF = xContext.getServiceManager();
|
||||||
|
|
||||||
// create a new instance of the the desktop
|
// create a new instance of the desktop
|
||||||
Object oDesktop = xMCF.createInstanceWithContext(
|
Object oDesktop = xMCF.createInstanceWithContext(
|
||||||
"com.sun.star.frame.Desktop", xContext );
|
"com.sun.star.frame.Desktop", xContext );
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ interface XUndoManagerListener : ::com::sun::star::lang::XEventListener
|
|||||||
*/
|
*/
|
||||||
void allActionsCleared( [in] ::com::sun::star::lang::EventObject i_event );
|
void allActionsCleared( [in] ::com::sun::star::lang::EventObject i_event );
|
||||||
|
|
||||||
/** is called when the the Redo stack has been cleared.
|
/** is called when the Redo stack has been cleared.
|
||||||
|
|
||||||
@see XUndoManager::clearRedo
|
@see XUndoManager::clearRedo
|
||||||
*/
|
*/
|
||||||
|
@ -33,7 +33,7 @@ interface XFilterControllerListener;
|
|||||||
|
|
||||||
<p>In a form based filter, form controls bound to a searchable database field are replaced with a control
|
<p>In a form based filter, form controls bound to a searchable database field are replaced with a control
|
||||||
which allows entering a search expression. This so-called <em>predicate expression</em> is basically a part of an
|
which allows entering a search expression. This so-called <em>predicate expression</em> is basically a part of an
|
||||||
SQL <code>WHERE</code> clause, but without the the part denoting the database column. For instance, if you
|
SQL <code>WHERE</code> clause, but without the part denoting the database column. For instance, if you
|
||||||
have a form control bound to a table column named <code>Name</code>, then entering the string
|
have a form control bound to a table column named <code>Name</code>, then entering the string
|
||||||
<q>LIKE '%Smith%'</q> effectively constitutes a SQL <code>WHERE</code> clause <code>"Name" LIKE '%Smith%'</code>.</p>
|
<q>LIKE '%Smith%'</q> effectively constitutes a SQL <code>WHERE</code> clause <code>"Name" LIKE '%Smith%'</code>.</p>
|
||||||
|
|
||||||
|
@ -110,7 +110,7 @@ interface XLanguageGuessing
|
|||||||
/** determines the single most probable language of a sub-string.
|
/** determines the single most probable language of a sub-string.
|
||||||
|
|
||||||
<p>Please note that because statistical analysis is part
|
<p>Please note that because statistical analysis is part
|
||||||
of the algorithm the the likelihood to get the correct
|
of the algorithm the likelihood to get the correct
|
||||||
result increases with the length of the sub-string.
|
result increases with the length of the sub-string.
|
||||||
A word is much less likely guessed correctly compared to
|
A word is much less likely guessed correctly compared to
|
||||||
a sentence or even a whole paragraph.</p>
|
a sentence or even a whole paragraph.</p>
|
||||||
|
@ -68,7 +68,7 @@ service OfficeDatabaseDocument
|
|||||||
*/
|
*/
|
||||||
interface ::com::sun::star::script::provider::XScriptProviderSupplier;
|
interface ::com::sun::star::script::provider::XScriptProviderSupplier;
|
||||||
|
|
||||||
/** allows to initialize the the document, either from scratch, or from a stored
|
/** allows to initialize the document, either from scratch, or from a stored
|
||||||
database document.
|
database document.
|
||||||
|
|
||||||
<p>A newly instantiated database document cannot be operated until it is fully
|
<p>A newly instantiated database document cannot be operated until it is fully
|
||||||
|
@ -250,7 +250,7 @@ interface XDatabaseDocumentUI
|
|||||||
<p>In opposite to <member>loadComponent</member>, this method allows you to specify
|
<p>In opposite to <member>loadComponent</member>, this method allows you to specify
|
||||||
additional arguments which are passed to the to-be-loaded component.</p>
|
additional arguments which are passed to the to-be-loaded component.</p>
|
||||||
|
|
||||||
<p>The meaning of the the arguments is defined at the service which is effectively
|
<p>The meaning of the arguments is defined at the service which is effectively
|
||||||
created. See the <a href="#component_types">above table</a> for a list of those
|
created. See the <a href="#component_types">above table</a> for a list of those
|
||||||
services.</p>
|
services.</p>
|
||||||
*/
|
*/
|
||||||
@ -285,7 +285,7 @@ interface XDatabaseDocumentUI
|
|||||||
<p>In opposite to <member>createComponent</member>, this method allows you to specify
|
<p>In opposite to <member>createComponent</member>, this method allows you to specify
|
||||||
additional arguments which are passed to the to-be-loaded component.</p>
|
additional arguments which are passed to the to-be-loaded component.</p>
|
||||||
|
|
||||||
<p>The meaning of the the arguments is defined at the service which is effectively
|
<p>The meaning of the arguments is defined at the service which is effectively
|
||||||
created. See the <a href="#component_types">above table</a> for a list of those
|
created. See the <a href="#component_types">above table</a> for a list of those
|
||||||
services.</p>
|
services.</p>
|
||||||
|
|
||||||
|
@ -4980,7 +4980,7 @@
|
|||||||
<prop
|
<prop
|
||||||
oor:name="PixelExportUnit" oor:type="xs:int" oor:nillable="false">
|
oor:name="PixelExportUnit" oor:type="xs:int" oor:nillable="false">
|
||||||
<info>
|
<info>
|
||||||
<desc>Specifies the unit default that is used in the the graphic
|
<desc>Specifies the unit default that is used in the graphic
|
||||||
export dialog if exporting pixel graphics.</desc>
|
export dialog if exporting pixel graphics.</desc>
|
||||||
</info>
|
</info>
|
||||||
<constraints>
|
<constraints>
|
||||||
@ -5028,7 +5028,7 @@
|
|||||||
oor:nillable="false">
|
oor:nillable="false">
|
||||||
<info>
|
<info>
|
||||||
<desc>Specifies the unit default for the resolution that is used
|
<desc>Specifies the unit default for the resolution that is used
|
||||||
in the the graphic export dialog if exporting pixel
|
in the graphic export dialog if exporting pixel
|
||||||
graphics.</desc>
|
graphics.</desc>
|
||||||
</info>
|
</info>
|
||||||
<constraints>
|
<constraints>
|
||||||
@ -5081,7 +5081,7 @@
|
|||||||
oor:name="VectorExportUnit" oor:type="xs:int"
|
oor:name="VectorExportUnit" oor:type="xs:int"
|
||||||
oor:nillable="false">
|
oor:nillable="false">
|
||||||
<info>
|
<info>
|
||||||
<desc>Specifies the unit default that is used in the the graphic
|
<desc>Specifies the unit default that is used in the graphic
|
||||||
export dialog if exporting vector graphics.</desc>
|
export dialog if exporting vector graphics.</desc>
|
||||||
</info>
|
</info>
|
||||||
<constraints>
|
<constraints>
|
||||||
|
@ -434,7 +434,7 @@
|
|||||||
</prop>
|
</prop>
|
||||||
<prop oor:type="xs:boolean" oor:name="PaperCompanyAddressReceiverField">
|
<prop oor:type="xs:boolean" oor:name="PaperCompanyAddressReceiverField">
|
||||||
<info>
|
<info>
|
||||||
<desc>Enables the the Sender Address Line in the Receiver Field for Business Paper.</desc>
|
<desc>Enables the Sender Address Line in the Receiver Field for Business Paper.</desc>
|
||||||
</info>
|
</info>
|
||||||
</prop>
|
</prop>
|
||||||
<prop oor:type="xs:boolean" oor:name="PaperFooter">
|
<prop oor:type="xs:boolean" oor:name="PaperFooter">
|
||||||
|
@ -321,7 +321,7 @@ public class MSOfficePrint
|
|||||||
out.write( " print STDERR \"Usage: word_print.pl <Word file> <name of printer> <output file> .\\n " + ls );
|
out.write( " print STDERR \"Usage: word_print.pl <Word file> <name of printer> <output file> .\\n " + ls );
|
||||||
out.write( " Please use the same string for the name of the printer as you can find \\n " + ls );
|
out.write( " Please use the same string for the name of the printer as you can find \\n " + ls );
|
||||||
out.write( " under Start-Control Panel-Printer and Faxes \\n " + ls );
|
out.write( " under Start-Control Panel-Printer and Faxes \\n " + ls );
|
||||||
out.write( " The name could look like the the following line: \\n " + ls );
|
out.write( " The name could look like the following line: \\n " + ls );
|
||||||
out.write( " Apple LaserWriter II NT v47.0 \\n " + ls );
|
out.write( " Apple LaserWriter II NT v47.0 \\n " + ls );
|
||||||
out.write( " Sample command line: \\n " + ls );
|
out.write( " Sample command line: \\n " + ls );
|
||||||
out.write( " execl_print.pl c:\\book1.doc Apple LaserWriter II NT v47.0 c:\\output\\book1.ps \\n\"; " + ls );
|
out.write( " execl_print.pl c:\\book1.doc Apple LaserWriter II NT v47.0 c:\\output\\book1.ps \\n\"; " + ls );
|
||||||
@ -542,7 +542,7 @@ public class MSOfficePrint
|
|||||||
out.write( " print STDERR \"Usage: printViaExcel.pl <Excel file> <name of printer> <output file> .\\n " + ls );
|
out.write( " print STDERR \"Usage: printViaExcel.pl <Excel file> <name of printer> <output file> .\\n " + ls );
|
||||||
out.write( " Please use the same string for the name of the printer as you can find \\n " + ls );
|
out.write( " Please use the same string for the name of the printer as you can find \\n " + ls );
|
||||||
out.write( " under Start-Control Panel-Printer and Faxes \\n " + ls );
|
out.write( " under Start-Control Panel-Printer and Faxes \\n " + ls );
|
||||||
out.write( " The name could look like the the following line: \\n " + ls );
|
out.write( " The name could look like the following line: \\n " + ls );
|
||||||
out.write( " Apple LaserWriter II NT v47.0 \\n " + ls );
|
out.write( " Apple LaserWriter II NT v47.0 \\n " + ls );
|
||||||
out.write( " Sample command line: \\n " + ls );
|
out.write( " Sample command line: \\n " + ls );
|
||||||
out.write( " execl_print.pl c:\\book1.xls Apple LaserWriter II NT v47.0 c:\\output\\book1.ps \\n\"; " + ls );
|
out.write( " execl_print.pl c:\\book1.xls Apple LaserWriter II NT v47.0 c:\\output\\book1.ps \\n\"; " + ls );
|
||||||
@ -731,7 +731,7 @@ public class MSOfficePrint
|
|||||||
out.write( " print STDERR \"Usage: powerpoint_print.pl <PowerPoint file> <name of printer> <output file> .\\n " + ls );
|
out.write( " print STDERR \"Usage: powerpoint_print.pl <PowerPoint file> <name of printer> <output file> .\\n " + ls );
|
||||||
out.write( " Please use the same string for the name of the printer as you can find \\n " + ls );
|
out.write( " Please use the same string for the name of the printer as you can find \\n " + ls );
|
||||||
out.write( " under Start-Control Panel-Printer and Faxes \\n " + ls );
|
out.write( " under Start-Control Panel-Printer and Faxes \\n " + ls );
|
||||||
out.write( " The name could look like the the following line: \\n " + ls );
|
out.write( " The name could look like the following line: \\n " + ls );
|
||||||
out.write( " Apple LaserWriter II NT v47.0 \\n " + ls );
|
out.write( " Apple LaserWriter II NT v47.0 \\n " + ls );
|
||||||
out.write( " Sample command line: \\n " + ls );
|
out.write( " Sample command line: \\n " + ls );
|
||||||
out.write( " powerpoint_print.pl c:\\book.ppt Apple LaserWriter II NT v47.0 c:\\output\\book.ps \\n\"; " + ls );
|
out.write( " powerpoint_print.pl c:\\book.ppt Apple LaserWriter II NT v47.0 c:\\output\\book.ps \\n\"; " + ls );
|
||||||
|
@ -409,7 +409,7 @@ public class MSOfficePostscriptCreator implements IOffice
|
|||||||
out.write( " print STDERR \"Usage: word_print.pl <Word file> <name of printer> <output file> .\\n " + ls );
|
out.write( " print STDERR \"Usage: word_print.pl <Word file> <name of printer> <output file> .\\n " + ls );
|
||||||
out.write( " Please use the same string for the name of the printer as you can find \\n " + ls );
|
out.write( " Please use the same string for the name of the printer as you can find \\n " + ls );
|
||||||
out.write( " under Start-Control Panel-Printer and Faxes \\n " + ls );
|
out.write( " under Start-Control Panel-Printer and Faxes \\n " + ls );
|
||||||
out.write( " The name could look like the the following line: \\n " + ls );
|
out.write( " The name could look like the following line: \\n " + ls );
|
||||||
out.write( " Apple LaserWriter II NT v47.0 \\n " + ls );
|
out.write( " Apple LaserWriter II NT v47.0 \\n " + ls );
|
||||||
out.write( " Sample command line: \\n " + ls );
|
out.write( " Sample command line: \\n " + ls );
|
||||||
out.write( " execl_print.pl c:\\book1.doc Apple LaserWriter II NT v47.0 c:\\output\\book1.ps \\n\"; " + ls );
|
out.write( " execl_print.pl c:\\book1.doc Apple LaserWriter II NT v47.0 c:\\output\\book1.ps \\n\"; " + ls );
|
||||||
@ -634,7 +634,7 @@ public class MSOfficePostscriptCreator implements IOffice
|
|||||||
out.write( " print STDERR \"Usage: printViaExcel.pl <Excel file> <name of printer> <output file> .\\n " + ls );
|
out.write( " print STDERR \"Usage: printViaExcel.pl <Excel file> <name of printer> <output file> .\\n " + ls );
|
||||||
out.write( " Please use the same string for the name of the printer as you can find \\n " + ls );
|
out.write( " Please use the same string for the name of the printer as you can find \\n " + ls );
|
||||||
out.write( " under Start-Control Panel-Printer and Faxes \\n " + ls );
|
out.write( " under Start-Control Panel-Printer and Faxes \\n " + ls );
|
||||||
out.write( " The name could look like the the following line: \\n " + ls );
|
out.write( " The name could look like the following line: \\n " + ls );
|
||||||
out.write( " Apple LaserWriter II NT v47.0 \\n " + ls );
|
out.write( " Apple LaserWriter II NT v47.0 \\n " + ls );
|
||||||
out.write( " Sample command line: \\n " + ls );
|
out.write( " Sample command line: \\n " + ls );
|
||||||
out.write( " execl_print.pl c:\\book1.xls Apple LaserWriter II NT v47.0 c:\\output\\book1.ps \\n\"; " + ls );
|
out.write( " execl_print.pl c:\\book1.xls Apple LaserWriter II NT v47.0 c:\\output\\book1.ps \\n\"; " + ls );
|
||||||
@ -821,7 +821,7 @@ public class MSOfficePostscriptCreator implements IOffice
|
|||||||
out.write( " print STDERR \"Usage: powerpoint_print.pl <PowerPoint file> <name of printer> <output file> .\\n " + ls );
|
out.write( " print STDERR \"Usage: powerpoint_print.pl <PowerPoint file> <name of printer> <output file> .\\n " + ls );
|
||||||
out.write( " Please use the same string for the name of the printer as you can find \\n " + ls );
|
out.write( " Please use the same string for the name of the printer as you can find \\n " + ls );
|
||||||
out.write( " under Start-Control Panel-Printer and Faxes \\n " + ls );
|
out.write( " under Start-Control Panel-Printer and Faxes \\n " + ls );
|
||||||
out.write( " The name could look like the the following line: \\n " + ls );
|
out.write( " The name could look like the following line: \\n " + ls );
|
||||||
out.write( " Apple LaserWriter II NT v47.0 \\n " + ls );
|
out.write( " Apple LaserWriter II NT v47.0 \\n " + ls );
|
||||||
out.write( " Sample command line: \\n " + ls );
|
out.write( " Sample command line: \\n " + ls );
|
||||||
out.write( " powerpoint_print.pl c:\\book.ppt Apple LaserWriter II NT v47.0 c:\\output\\book.ps \\n\"; " + ls );
|
out.write( " powerpoint_print.pl c:\\book.ppt Apple LaserWriter II NT v47.0 c:\\output\\book.ps \\n\"; " + ls );
|
||||||
|
@ -25,7 +25,7 @@ import util.utils;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class is printing to a <CODE>LogWriter</CODE>. This could be usefull if a UNO-API
|
* This class is printing to a <CODE>LogWriter</CODE>. This could be usefull if a UNO-API
|
||||||
* function runns longer the the time out. To avoid the assumption of death applikation
|
* function runns longer the time out. To avoid the assumption of death applikation
|
||||||
* a simple string is logged for 100 times of time out.</br>
|
* a simple string is logged for 100 times of time out.</br>
|
||||||
* Example:</br>
|
* Example:</br>
|
||||||
* logger = new LoggingThread((LogWriter)log, tParam);
|
* logger = new LoggingThread((LogWriter)log, tParam);
|
||||||
|
@ -111,7 +111,7 @@ public class _XControl extends MultiMethodTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test calls the method. Then the the object ralation 'WINPEER' is
|
* Test calls the method. Then the object ralation 'WINPEER' is
|
||||||
* obtained, and compared with the peer, gotten from (XControl) oObj
|
* obtained, and compared with the peer, gotten from (XControl) oObj
|
||||||
* variable.<p>
|
* variable.<p>
|
||||||
* Has <b> OK </b> status if peer gotten isn't null
|
* Has <b> OK </b> status if peer gotten isn't null
|
||||||
|
@ -173,7 +173,7 @@ namespace rptui
|
|||||||
*/
|
*/
|
||||||
sal_Bool handleKeyEvent(const KeyEvent& _rEvent);
|
sal_Bool handleKeyEvent(const KeyEvent& _rEvent);
|
||||||
|
|
||||||
/** the the section as marked or not marked
|
/** the section as marked or not marked
|
||||||
@param _pSectionView the section where to set the marked flag
|
@param _pSectionView the section where to set the marked flag
|
||||||
@param _bMark the marked flag
|
@param _bMark the marked flag
|
||||||
*/
|
*/
|
||||||
|
@ -164,7 +164,7 @@ namespace rptui
|
|||||||
*/
|
*/
|
||||||
sal_Bool handleKeyEvent(const KeyEvent& _rEvent);
|
sal_Bool handleKeyEvent(const KeyEvent& _rEvent);
|
||||||
|
|
||||||
/** the the section as marked or not marked
|
/** the section as marked or not marked
|
||||||
@param _pSectionView the section where to set the marked flag
|
@param _pSectionView the section where to set the marked flag
|
||||||
@param _bMark the marked flag
|
@param _bMark the marked flag
|
||||||
*/
|
*/
|
||||||
|
@ -249,7 +249,7 @@ namespace rptui
|
|||||||
*/
|
*/
|
||||||
sal_Bool handleKeyEvent(const KeyEvent& _rEvent);
|
sal_Bool handleKeyEvent(const KeyEvent& _rEvent);
|
||||||
|
|
||||||
/** the the section as marked or not marked
|
/** the section as marked or not marked
|
||||||
@param _pSectionView the section where to set the marked flag
|
@param _pSectionView the section where to set the marked flag
|
||||||
@param _bMark the marked flag
|
@param _bMark the marked flag
|
||||||
*/
|
*/
|
||||||
|
@ -310,7 +310,7 @@ SAL_DLLPUBLIC oslFileError SAL_CALL osl_acquireDirectoryItem(
|
|||||||
SAL_DLLPUBLIC oslFileError SAL_CALL osl_releaseDirectoryItem(
|
SAL_DLLPUBLIC oslFileError SAL_CALL osl_releaseDirectoryItem(
|
||||||
oslDirectoryItem Item );
|
oslDirectoryItem Item );
|
||||||
|
|
||||||
/** Determine if two directory items point the the same underlying file
|
/** Determine if two directory items point the same underlying file
|
||||||
|
|
||||||
The comparison is done first by URL, and then by resolving links to
|
The comparison is done first by URL, and then by resolving links to
|
||||||
find the target, and finally by comparing inodes on unix.
|
find the target, and finally by comparing inodes on unix.
|
||||||
|
@ -1579,7 +1579,7 @@ public:
|
|||||||
return (RC) osl_getFileStatus( _pData, &rStatus._aStatus, rStatus._nMask );
|
return (RC) osl_getFileStatus( _pData, &rStatus._aStatus, rStatus._nMask );
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Determine if a directory item point the the same underlying file
|
/** Determine if a directory item point the same underlying file
|
||||||
|
|
||||||
The comparison is done first by URL, and then by resolving links to
|
The comparison is done first by URL, and then by resolving links to
|
||||||
find the target, and finally by comparing inodes on unix.
|
find the target, and finally by comparing inodes on unix.
|
||||||
|
@ -336,7 +336,7 @@ SAL_DLLPUBLIC oslProcessError SAL_CALL osl_joinProcessWithTimeout(
|
|||||||
@param[out] pInfo a pointer to a vaid oslProcessInfo structure.
|
@param[out] pInfo a pointer to a vaid oslProcessInfo structure.
|
||||||
the Size field has to be initialized with the size
|
the Size field has to be initialized with the size
|
||||||
of the oslProcessInfo structure.
|
of the oslProcessInfo structure.
|
||||||
on success the the Field member holds the (or'ed)
|
on success the Field member holds the (or'ed)
|
||||||
retrieved valid information fields.
|
retrieved valid information fields.
|
||||||
@return osl_Process_E_None on success, osl_Process_E_Unknown on failure.
|
@return osl_Process_E_None on success, osl_Process_E_Unknown on failure.
|
||||||
*/
|
*/
|
||||||
|
@ -27,7 +27,7 @@ extern int osl_isSingleCPU;
|
|||||||
/* For all Intel x86 above x486 we use a spezial inline assembler implementation.
|
/* For all Intel x86 above x486 we use a spezial inline assembler implementation.
|
||||||
The main reason is that WIN9? does not return the result of the operation.
|
The main reason is that WIN9? does not return the result of the operation.
|
||||||
Instead there is only returned a value greater than zero is the increment
|
Instead there is only returned a value greater than zero is the increment
|
||||||
result is greater than zero, but not the the result of the addition.
|
result is greater than zero, but not the result of the addition.
|
||||||
For Windows NT the native function could be used, because the correct result
|
For Windows NT the native function could be used, because the correct result
|
||||||
is returned. Beacuse of simpler code maintance and performace reasons we use
|
is returned. Beacuse of simpler code maintance and performace reasons we use
|
||||||
on every x86-Windows-Platform the inline assembler implementation.
|
on every x86-Windows-Platform the inline assembler implementation.
|
||||||
|
@ -45,7 +45,7 @@ protected:
|
|||||||
virtual void finalizeImport();
|
virtual void finalizeImport();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/** Imports the the relation identifier for the DrawingML part. */
|
/** Imports the relation identifier for the DrawingML part. */
|
||||||
void importDrawing( const AttributeList& rAttribs );
|
void importDrawing( const AttributeList& rAttribs );
|
||||||
/** Imports the DRAWING record containing the relation identifier for the DrawingML part. */
|
/** Imports the DRAWING record containing the relation identifier for the DrawingML part. */
|
||||||
void importDrawing( SequenceInputStream& rStrm );
|
void importDrawing( SequenceInputStream& rStrm );
|
||||||
|
@ -83,9 +83,9 @@ private:
|
|||||||
void importHyperlink( const AttributeList& rAttribs );
|
void importHyperlink( const AttributeList& rAttribs );
|
||||||
/** Imports individual break that is either within row or column break context. */
|
/** Imports individual break that is either within row or column break context. */
|
||||||
void importBrk( const AttributeList& rAttribs, bool bRowBreak );
|
void importBrk( const AttributeList& rAttribs, bool bRowBreak );
|
||||||
/** Imports the the relation identifier for the DrawingML part. */
|
/** Imports the relation identifier for the DrawingML part. */
|
||||||
void importDrawing( const AttributeList& rAttribs );
|
void importDrawing( const AttributeList& rAttribs );
|
||||||
/** Imports the the relation identifier for the legacy VML drawing part. */
|
/** Imports the relation identifier for the legacy VML drawing part. */
|
||||||
void importLegacyDrawing( const AttributeList& rAttribs );
|
void importLegacyDrawing( const AttributeList& rAttribs );
|
||||||
/** Imports additional data for an OLE object. */
|
/** Imports additional data for an OLE object. */
|
||||||
void importOleObject( const AttributeList& rAttribs );
|
void importOleObject( const AttributeList& rAttribs );
|
||||||
|
@ -314,7 +314,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
::rtl::OUString msDescription;
|
::rtl::OUString msDescription;
|
||||||
|
|
||||||
/** Name of this object. It changes according the the draw page's
|
/** Name of this object. It changes according the draw page's
|
||||||
display mode.
|
display mode.
|
||||||
*/
|
*/
|
||||||
::rtl::OUString msName;
|
::rtl::OUString msName;
|
||||||
|
@ -671,7 +671,7 @@ sal_Int32 GetNullDate( const uno::Reference< beans::XPropertySet >& xOptions )
|
|||||||
* shall be the first day of the week.
|
* shall be the first day of the week.
|
||||||
*
|
*
|
||||||
* A week that lies partly in one year and partly in annother
|
* A week that lies partly in one year and partly in annother
|
||||||
* is assigned a number in the the year in which most of its days lie.
|
* is assigned a number in the year in which most of its days lie.
|
||||||
*
|
*
|
||||||
* That means that week 1 of any year is the week that contains the 4. January
|
* That means that week 1 of any year is the week that contains the 4. January
|
||||||
*
|
*
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
<locale lang="en">
|
<locale lang="en">
|
||||||
<displayname value="Hello World"/>
|
<displayname value="Hello World"/>
|
||||||
<description>
|
<description>
|
||||||
Adds the the string "Hello World" into the current text doc.
|
Adds the string "Hello World" into the current text doc.
|
||||||
</description>
|
</description>
|
||||||
</locale>
|
</locale>
|
||||||
<functionname value="helloworld.bsh"/>
|
<functionname value="helloworld.bsh"/>
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
<locale lang="en">
|
<locale lang="en">
|
||||||
<displayname value="Hello World"/>
|
<displayname value="Hello World"/>
|
||||||
<description>
|
<description>
|
||||||
Adds the the string "Hello World" into the current text doc.
|
Adds the string "Hello World" into the current text doc.
|
||||||
</description>
|
</description>
|
||||||
</locale>
|
</locale>
|
||||||
<functionname value="helloworld.js"/>
|
<functionname value="helloworld.js"/>
|
||||||
|
@ -800,13 +800,13 @@ bool FindControl(const ScriptEvent& evt, void* pPara)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
//if the the given control type in evt.Arguments[0] appears in the type list in pPara, then approve the execution
|
//if the given control type in evt.Arguments[0] appears in the type list in pPara, then approve the execution
|
||||||
bool ApproveType(const ScriptEvent& evt, void* pPara)
|
bool ApproveType(const ScriptEvent& evt, void* pPara)
|
||||||
{
|
{
|
||||||
return FindControl(evt, pPara);
|
return FindControl(evt, pPara);
|
||||||
}
|
}
|
||||||
|
|
||||||
//if the the given control type in evt.Arguments[0] appears in the type list in pPara, then deny the execution
|
//if the given control type in evt.Arguments[0] appears in the type list in pPara, then deny the execution
|
||||||
bool DenyType(const ScriptEvent& evt, void* pPara)
|
bool DenyType(const ScriptEvent& evt, void* pPara)
|
||||||
{
|
{
|
||||||
return !FindControl(evt, pPara);
|
return !FindControl(evt, pPara);
|
||||||
|
@ -86,7 +86,7 @@ Rectangle AccessibleViewForwarder::GetVisibleArea (void) const
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
/** Tansform the given point into pixel coordiantes. After the the pixel
|
/** Tansform the given point into pixel coordiantes. After the pixel
|
||||||
coordiantes of the window origin are added to make the point coordinates
|
coordiantes of the window origin are added to make the point coordinates
|
||||||
absolute.
|
absolute.
|
||||||
*/
|
*/
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user