remove spurious ::com::sun:⭐:sdbcx namespace prefix
Change-Id: I37220af64c15259ab5bcf61b324d2a73ed8f5348
This commit is contained in:
@@ -404,7 +404,7 @@ public:
|
||||
bool HasHandle() const {return m_bHandle;}
|
||||
void InsertHandleColumn();
|
||||
|
||||
// which position does the column with the id in the ::com::sun::star::sdbcx::View have, the handle column doesn't count
|
||||
// which position does the column with the id in the View have, the handle column doesn't count
|
||||
sal_uInt16 GetViewColumnPos( sal_uInt16 nId ) const { sal_uInt16 nPos = GetColumnPos(nId); return (nPos==BROWSER_INVALIDID) ? GRID_COLUMN_NOT_FOUND : nPos-1; }
|
||||
|
||||
// which position does the column with the id in m_aColumns have, that means the ::com::sun::star::sdbcx::Container
|
||||
|
@@ -653,7 +653,7 @@ void FmFormShell::Execute(SfxRequest &rReq)
|
||||
} break;
|
||||
case SID_FM_SHOW_FMEXPLORER:
|
||||
{
|
||||
if (!m_pFormView) // setzen der ::com::sun::star::sdbcx::View Forcieren
|
||||
if (!m_pFormView) // setzen der View Forcieren
|
||||
GetViewShell()->GetViewFrame()->GetDispatcher()->Execute(SID_CREATE_SW_DRAWVIEW);
|
||||
|
||||
GetViewShell()->GetViewFrame()->ChildWindowExecute(rReq);
|
||||
|
@@ -64,7 +64,7 @@ namespace svxform
|
||||
// das ist die Basis, mit der beide Angaben multipliziert werden (in ms)
|
||||
|
||||
#define EXPLORER_SYNC_DELAY 200
|
||||
// dieser Betrag an Millisekunden wird gewartet, ehe der Explorer nach einem Select oder Deselect die ::com::sun::star::sdbcx::View synchronisiert
|
||||
// dieser Betrag an Millisekunden wird gewartet, ehe der Explorer nach einem Select oder Deselect die View synchronisiert
|
||||
|
||||
using namespace ::com::sun::star::uno;
|
||||
using namespace ::com::sun::star::lang;
|
||||
|
@@ -481,13 +481,13 @@ namespace svxform
|
||||
void SynchronizeSelection(FmEntryDataArray& arredToSelect);
|
||||
// nach dem Aufruf dieser Methode sind genau die Eintraege selektiert, die in dem Array bezeichnet sind
|
||||
void SynchronizeSelection();
|
||||
// macht das selbe, nimmt die MarkList der ::com::sun::star::sdbcx::View
|
||||
// macht das selbe, nimmt die MarkList der View
|
||||
void SynchronizeMarkList();
|
||||
// umgekehrte Richtung von SynchronizeMarkList : markiert in der ::com::sun::star::sdbcx::View alle der aktuellen Selektion entsprechenden Controls
|
||||
// umgekehrte Richtung von SynchronizeMarkList : markiert in der View alle der aktuellen Selektion entsprechenden Controls
|
||||
|
||||
void CollectObjects(FmFormData* pFormData, bool bDeep, ::std::set< ::com::sun::star::uno::Reference< ::com::sun::star::form::XFormComponent > >& _rObjects);
|
||||
|
||||
// im Select aktualisiere ich normalerweise die Marklist der zugehoerigen ::com::sun::star::sdbcx::View, mit folgenden Funktionen
|
||||
// im Select aktualisiere ich normalerweise die Marklist der zugehoerigen View, mit folgenden Funktionen
|
||||
// kann ich das Locking dieses Verhaltens steuern
|
||||
void LockSelectionHandling() { ++m_nSelectLock; }
|
||||
void UnlockSelectionHandling() { --m_nSelectLock; }
|
||||
|
@@ -143,7 +143,7 @@ public:
|
||||
|
||||
::com::sun::star::uno::Reference< ::com::sun::star::sdb::XColumn > GetCurrentFieldValue() const;
|
||||
|
||||
// Zeichnen eines Feldes an einer Position, ist ein ::com::sun::star::sdbcx::View gesetzt
|
||||
// Zeichnen eines Feldes an einer Position, ist ein View gesetzt
|
||||
// uebernimmt dieser das Zeichnen, z.B. fuer CheckBoxen
|
||||
void Paint(OutputDevice& rDev,
|
||||
const Rectangle& rRect,
|
||||
|
@@ -75,7 +75,7 @@ SvxDrawPage::SvxDrawPage( SdrPage* pInPage ) throw()
|
||||
StartListening( *mpModel );
|
||||
|
||||
|
||||
// Erzeugen der (hidden) ::com::sun::star::sdbcx::View
|
||||
// Erzeugen der (hidden) View
|
||||
mpView = new SdrView( mpModel );
|
||||
if( mpView )
|
||||
mpView->SetDesignMode(true);
|
||||
|
@@ -421,7 +421,7 @@ private:
|
||||
bool mbInCallModified : 1; //< TRUE: in Set/Reset-Modified link.
|
||||
bool mbIsAutoFmtRedline : 1; //< TRUE: Redlines are recorded by Autoformat.
|
||||
bool mbOLEPrtNotifyPending : 1; /**< TRUE: Printer has changed. At creation of
|
||||
::com::sun::star::sdbcx::View
|
||||
View
|
||||
notification of OLE-Objects PrtOLENotify() is required. */
|
||||
bool mbAllOLENotify : 1; //< True: Notification of all objects is required.
|
||||
bool mbIsRedlineMove : 1; //< True: Redlines are moved into to / out of the section.
|
||||
|
@@ -57,7 +57,7 @@ struct SwDBData;
|
||||
#define VIEWOPT_DEST_VIEW 0
|
||||
#define VIEWOPT_DEST_TEXT 1
|
||||
#define VIEWOPT_DEST_WEB 2
|
||||
#define VIEWOPT_DEST_VIEW_ONLY 3 //ViewOptions are set only at ::com::sun::star::sdbcx::View, not at the appl.
|
||||
#define VIEWOPT_DEST_VIEW_ONLY 3 //ViewOptions are set only at View, not at the appl.
|
||||
|
||||
namespace com{ namespace sun{ namespace star{ namespace scanner{
|
||||
class XScannerManager2;
|
||||
@@ -260,7 +260,7 @@ inline void SwModule::SetLngSvcEvtListener(
|
||||
xLngSvcEvtListener = xLstnr;
|
||||
}
|
||||
|
||||
// Access to SwModule, the ::com::sun::star::sdbcx::View and the shell.
|
||||
// Access to SwModule, the View and the shell.
|
||||
|
||||
#define SW_MOD() ( *(SwModule**) GetAppData(SHL_WRITER))
|
||||
|
||||
|
@@ -78,7 +78,7 @@ class SwCaptionDialog : public SvxStandardDialog
|
||||
|
||||
OUString m_sNone;
|
||||
|
||||
SwView &rView; // search per active, avoid ::com::sun::star::sdbcx::View
|
||||
SwView &rView; // search per active, avoid View
|
||||
SwFldMgr *pMgr; // pointer to save the include
|
||||
SelectionType eType;
|
||||
|
||||
|
Reference in New Issue
Block a user