diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/impfont.hxx | 2 | ||||
-rw-r--r-- | vcl/inc/listbox.hxx | 9 | ||||
-rw-r--r-- | vcl/inc/octree.hxx | 2 | ||||
-rw-r--r-- | vcl/inc/salwtype.hxx | 4 | ||||
-rw-r--r-- | vcl/inc/unx/cairotextrender.hxx | 4 | ||||
-rw-r--r-- | vcl/inc/unx/fc_fontoptions.hxx | 7 | ||||
-rw-r--r-- | vcl/inc/unx/gtk/gtksalmenu.hxx | 2 | ||||
-rw-r--r-- | vcl/inc/unx/i18n_ic.hxx | 5 | ||||
-rw-r--r-- | vcl/inc/unx/i18n_xkb.hxx | 4 | ||||
-rw-r--r-- | vcl/inc/unx/salmenu.h | 56 | ||||
-rw-r--r-- | vcl/source/control/combobox.cxx | 2 | ||||
-rw-r--r-- | vcl/source/edit/textdat2.hxx | 7 | ||||
-rw-r--r-- | vcl/source/edit/textund2.hxx | 12 | ||||
-rw-r--r-- | vcl/source/edit/textview.cxx | 10 | ||||
-rw-r--r-- | vcl/source/font/font.cxx | 30 | ||||
-rw-r--r-- | vcl/source/gdi/pdffontcache.hxx | 5 | ||||
-rw-r--r-- | vcl/source/window/commandevent.cxx | 21 | ||||
-rw-r--r-- | vcl/source/window/menu.cxx | 67 | ||||
-rw-r--r-- | vcl/source/window/syschild.cxx | 33 | ||||
-rw-r--r-- | vcl/unx/generic/gdi/cairotextrender.cxx | 17 | ||||
-rw-r--r-- | vcl/unx/generic/glyphs/scrptrun.h | 13 |
21 files changed, 10 insertions, 302 deletions
diff --git a/vcl/inc/impfont.hxx b/vcl/inc/impfont.hxx index f2cb44c2e5a2..e608471a7d90 100644 --- a/vcl/inc/impfont.hxx +++ b/vcl/inc/impfont.hxx @@ -65,8 +65,6 @@ public: void SetSymbolFlag( const bool bSymbolFlag ) { mbSymbolFlag = bSymbolFlag; } - bool CompareDeviceIndependentFontAttributes(const ImplFont& rOther) const; - // straight properties, no getting them from AskConfig() FontFamily GetFamilyTypeNoAsk() const { return meFamily; } FontWeight GetWeightNoAsk() const { return meWeight; } diff --git a/vcl/inc/listbox.hxx b/vcl/inc/listbox.hxx index df2f68c5ca73..abde99b8aa53 100644 --- a/vcl/inc/listbox.hxx +++ b/vcl/inc/listbox.hxx @@ -69,15 +69,6 @@ struct ImplEntryType mbIsSelected = false; mpUserData = nullptr; } - - ImplEntryType( const Image& rImage ) : - maImage( rImage ), - mnFlags( ListBoxEntryFlags::NONE ), - mnHeight( 0 ) - { - mbIsSelected = false; - mpUserData = nullptr; - } }; class ImplEntryList diff --git a/vcl/inc/octree.hxx b/vcl/inc/octree.hxx index 803f592918db..bc9facb50638 100644 --- a/vcl/inc/octree.hxx +++ b/vcl/inc/octree.hxx @@ -45,8 +45,6 @@ class BitmapReadAccess; class VCL_PLUGIN_PUBLIC Octree { private: - Octree() {} - void CreatePalette( NODE* pNode ); void GetPalIndex( NODE* pNode ); diff --git a/vcl/inc/salwtype.hxx b/vcl/inc/salwtype.hxx index 0403589320c5..2a456161b735 100644 --- a/vcl/inc/salwtype.hxx +++ b/vcl/inc/salwtype.hxx @@ -113,8 +113,8 @@ struct SalMenuEvent sal_uInt16 mnId; // Menu item ID void* mpMenu; // pointer to VCL menu (class Menu) - SalMenuEvent() : mnId( 0 ), mpMenu( nullptr ) {} - SalMenuEvent( sal_uInt16 i_nId, void* i_pMenu ) + SalMenuEvent() : mnId( 0 ), mpMenu( nullptr ) {} + SalMenuEvent( sal_uInt16 i_nId, void* i_pMenu ) : mnId( i_nId ), mpMenu( i_pMenu ) {} }; diff --git a/vcl/inc/unx/cairotextrender.hxx b/vcl/inc/unx/cairotextrender.hxx index 14b35031b5b7..612daaede16d 100644 --- a/vcl/inc/unx/cairotextrender.hxx +++ b/vcl/inc/unx/cairotextrender.hxx @@ -51,12 +51,10 @@ public: }; private: - static int mnRefCount; typedef std::deque< std::pair<void *, CacheId> > LRUFonts; static LRUFonts maLRUFonts; public: - CairoFontsCache(); - ~CairoFontsCache(); + CairoFontsCache() = delete; static void CacheFont(void *pFont, const CacheId &rId); static void* FindCachedFont(const CacheId &rId); diff --git a/vcl/inc/unx/fc_fontoptions.hxx b/vcl/inc/unx/fc_fontoptions.hxx index f831ef57531b..d99870d1b6df 100644 --- a/vcl/inc/unx/fc_fontoptions.hxx +++ b/vcl/inc/unx/fc_fontoptions.hxx @@ -37,13 +37,6 @@ public: FontHinting meHinting; // whether the font should be hinted FontHintStyle meHintStyle; // type of font hinting to be used - FontConfigFontOptions() : - meEmbeddedBitmap(EMBEDDEDBITMAP_DONTKNOW), - meAntiAlias(ANTIALIAS_DONTKNOW), - meAutoHint(AUTOHINT_DONTKNOW), - meHinting(HINTING_DONTKNOW), - meHintStyle(HINT_SLIGHT), - mpPattern(nullptr) {} FontConfigFontOptions(FcPattern* pPattern) : meEmbeddedBitmap(EMBEDDEDBITMAP_DONTKNOW), meAntiAlias(ANTIALIAS_DONTKNOW), diff --git a/vcl/inc/unx/gtk/gtksalmenu.hxx b/vcl/inc/unx/gtk/gtksalmenu.hxx index 84696597bbc6..1a5cd0ad1fcc 100644 --- a/vcl/inc/unx/gtk/gtksalmenu.hxx +++ b/vcl/inc/unx/gtk/gtksalmenu.hxx @@ -18,7 +18,7 @@ #include <gio/gio.h> #endif -#include <unx/salmenu.h> +#include <salmenu.hxx> #include <unx/gtk/gtkframe.hxx> #include <vcl/idle.hxx> diff --git a/vcl/inc/unx/i18n_ic.hxx b/vcl/inc/unx/i18n_ic.hxx index 4410d58590ff..e6125909abf0 100644 --- a/vcl/inc/unx/i18n_ic.hxx +++ b/vcl/inc/unx/i18n_ic.hxx @@ -75,11 +75,6 @@ public: SalI18N_InputContext( SalFrame *aFrame ); ~SalI18N_InputContext(); - -private: - - SalI18N_InputContext(); // do not use this - }; #endif // INCLUDED_VCL_INC_UNX_I18N_IC_HXX diff --git a/vcl/inc/unx/i18n_xkb.hxx b/vcl/inc/unx/i18n_xkb.hxx index 0e6999261507..763e8a2b5c5d 100644 --- a/vcl/inc/unx/i18n_xkb.hxx +++ b/vcl/inc/unx/i18n_xkb.hxx @@ -46,10 +46,6 @@ public: void Dispatch( XEvent *pEvent ); // keep track of group changes inline int GetEventBase() const ; - -protected: - - SalI18N_KeyboardExtension(); // disabled }; inline diff --git a/vcl/inc/unx/salmenu.h b/vcl/inc/unx/salmenu.h deleted file mode 100644 index 9d43a10ff0f2..000000000000 --- a/vcl/inc/unx/salmenu.h +++ /dev/null @@ -1,56 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#ifndef INCLUDED_VCL_INC_UNX_SALMENU_H -#define INCLUDED_VCL_INC_UNX_SALMENU_H - -#include <vcl/bitmap.hxx> -#include <salmenu.hxx> - -class X11SalMenu : public SalMenu -{ -public: - X11SalMenu() {} - virtual ~X11SalMenu(); - - virtual bool VisibleMenuBar() override; // must return TRUE to actually DISPLAY native menu bars - // otherwise only menu messages are processed (eg, OLE on Windows) - - virtual void InsertItem( SalMenuItem* pSalMenuItem, unsigned nPos ) override; - virtual void RemoveItem( unsigned nPos ) override; - virtual void SetSubMenu( SalMenuItem* pSalMenuItem, SalMenu* pSubMenu, unsigned nPos ) override; - virtual void SetFrame( const SalFrame* pFrame ) override; - virtual void CheckItem( unsigned nPos, bool bCheck ) override; - virtual void EnableItem( unsigned nPos, bool bEnable ) override; - virtual void SetItemText( unsigned nPos, SalMenuItem* pSalMenuItem, const OUString& rText ) override; - virtual void SetItemImage( unsigned nPos, SalMenuItem* pSalMenuItem, const Image& rImage) override; - virtual void SetAccelerator( unsigned nPos, SalMenuItem* pSalMenuItem, const vcl::KeyCode& rKeyCode, const OUString& rKeyName ) override; - virtual void GetSystemMenuData( SystemMenuData* pData ) override; -}; - -class X11SalMenuItem : public SalMenuItem -{ -public: - X11SalMenuItem() {} - virtual ~X11SalMenuItem(); -}; - -#endif // INCLUDED_VCL_INC_UNX_SALMENU_H - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx index 6b54142519bf..2f72aa92110e 100644 --- a/vcl/source/control/combobox.cxx +++ b/vcl/source/control/combobox.cxx @@ -1028,8 +1028,6 @@ bool ComboBox::IsInDropDown() const return m_pImpl->m_pFloatWin && m_pImpl->m_pFloatWin->IsInPopupMode(); } -sal_Unicode ComboBox::GetMultiSelectionSeparator() const { return m_pImpl->m_cMultiSep; } - void ComboBox::EnableMultiSelection( bool bMulti ) { m_pImpl->m_pImplLB->EnableMultiSelection( bMulti, false ); diff --git a/vcl/source/edit/textdat2.hxx b/vcl/source/edit/textdat2.hxx index 2788d3696f7d..6a09fa8e4fac 100644 --- a/vcl/source/edit/textdat2.hxx +++ b/vcl/source/edit/textdat2.hxx @@ -52,13 +52,6 @@ private: sal_uInt8 nKind; bool bRightToLeft; - TETextPortion() - : nLen {0} - , nWidth {-1} - , nKind {PORTIONKIND_TEXT} - , bRightToLeft {false} - {} - public: TETextPortion( sal_Int32 nL ) : nLen {nL} diff --git a/vcl/source/edit/textund2.hxx b/vcl/source/edit/textund2.hxx index 786402c4daf9..bcb44bbf34b7 100644 --- a/vcl/source/edit/textund2.hxx +++ b/vcl/source/edit/textund2.hxx @@ -103,18 +103,6 @@ public: virtual OUString GetComment () const override; }; -class TextUndoSetAttribs: public TextUndo -{ -public: - TextUndoSetAttribs( TextEngine* pTextEngine, const TextSelection& rESel ); - virtual ~TextUndoSetAttribs(); - - virtual void Undo() override; - virtual void Redo() override; - - virtual OUString GetComment () const override; -}; - #endif // INCLUDED_VCL_SOURCE_EDIT_TEXTUND2_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/vcl/source/edit/textview.cxx b/vcl/source/edit/textview.cxx index a033c6b871b7..732651ecd3ef 100644 --- a/vcl/source/edit/textview.cxx +++ b/vcl/source/edit/textview.cxx @@ -475,16 +475,6 @@ void TextView::ImpShowHideSelection(bool /*bShow*/, const TextSelection* pRange) } } -VirtualDevice* TextView::GetVirtualDevice() -{ - if ( !mpImpl->mpVirtDev ) - { - mpImpl->mpVirtDev = VclPtr<VirtualDevice>::Create(); - mpImpl->mpVirtDev->SetLineColor(); - } - return mpImpl->mpVirtDev; -} - void TextView::EraseVirtualDevice() { mpImpl->mpVirtDev.disposeAndClear(); diff --git a/vcl/source/font/font.cxx b/vcl/source/font/font.cxx index de56c8059e57..bc490ff431af 100644 --- a/vcl/source/font/font.cxx +++ b/vcl/source/font/font.cxx @@ -694,7 +694,6 @@ void Font::SetQuality( int nQuality ) { mpImplFont->SetQuality( nQuality ); } void Font::IncreaseQualityBy( int nQualityAmount ) { mpImplFont->IncreaseQualityBy( nQualityAmount ); } void Font::DecreaseQualityBy( int nQualityAmount ) { mpImplFont->DecreaseQualityBy( nQualityAmount ); } -OUString Font::GetMapNames() const { return mpImplFont->GetMapNames(); } void Font::SetMapNames( OUString const & aMapNames ) { mpImplFont->SetMapNames(aMapNames); } bool Font::IsBuiltInFont() const { return mpImplFont->IsBuiltInFont(); } @@ -830,35 +829,6 @@ bool ImplFont::operator==( const ImplFont& rOther ) const return true; } -bool ImplFont::CompareDeviceIndependentFontAttributes(const ImplFont& rOther) const -{ - if (maFamilyName != rOther.maFamilyName) - return false; - - if (maStyleName != rOther.maStyleName) - return false; - - if (meWeight != rOther.meWeight) - return false; - - if (meItalic != rOther.meItalic) - return false; - - if (meFamily != rOther.meFamily) - return false; - - if (mePitch != rOther.mePitch) - return false; - - if (meWidthType != rOther.meWidthType) - return false; - - if (mbSymbolFlag != rOther.mbSymbolFlag) - return false; - - return true; -} - void ImplFont::AskConfig() { if( mbConfigLookup ) diff --git a/vcl/source/gdi/pdffontcache.hxx b/vcl/source/gdi/pdffontcache.hxx index f6686296bbd0..8bf5c959b429 100644 --- a/vcl/source/gdi/pdffontcache.hxx +++ b/vcl/source/gdi/pdffontcache.hxx @@ -38,11 +38,6 @@ namespace vcl std::type_info* m_typeFontFace; FontIdentifier( const PhysicalFontFace*, bool bVertical ); - FontIdentifier() - : m_nFontId(0) - , m_bVertical(false) - , m_typeFontFace(nullptr) - {} // Less than needed for std::set and std::map bool operator<( const FontIdentifier& rRight ) const diff --git a/vcl/source/window/commandevent.cxx b/vcl/source/window/commandevent.cxx index 25b3f15873d4..e7f7dcd8569d 100644 --- a/vcl/source/window/commandevent.cxx +++ b/vcl/source/window/commandevent.cxx @@ -64,11 +64,6 @@ CommandExtTextInputData::~CommandExtTextInputData() delete [] mpTextAttr; } -CommandInputContextData::CommandInputContextData() -{ - meLanguage = LANGUAGE_DONTKNOW; -} - CommandInputContextData::CommandInputContextData( LanguageType eLang ) { meLanguage = eLang; @@ -99,33 +94,17 @@ CommandWheelData::CommandWheelData( long nWheelDelta, long nWheelNotchDelta, mbDeltaIsPixel = bDeltaIsPixel; } -CommandScrollData::CommandScrollData() -{ - mnDeltaX = 0; - mnDeltaY = 0; -} - CommandScrollData::CommandScrollData( long nDeltaX, long nDeltaY ) { mnDeltaX = nDeltaX; mnDeltaY = nDeltaY; } -CommandModKeyData::CommandModKeyData() -{ - mnCode = 0L; -} - CommandModKeyData::CommandModKeyData( sal_uInt16 nCode ) { mnCode = nCode; } -CommandSelectionChangeData::CommandSelectionChangeData() -{ - mnStart = mnEnd = 0; -} - CommandSelectionChangeData::CommandSelectionChangeData( sal_uLong nStart, sal_uLong nEnd ) { mnStart = nStart; diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx index ce465f9c3a6f..64549365efd9 100644 --- a/vcl/source/window/menu.cxx +++ b/vcl/source/window/menu.cxx @@ -1077,61 +1077,6 @@ void Menu::SetItemImage( sal_uInt16 nItemId, const Image& rImage ) ImplGetSalMenu()->SetItemImage( nPos, pData->pSalMenuItem, rImage ); } -static inline Image ImplRotImage( const Image& rImage, long nAngle10 ) -{ - Image aRet; - BitmapEx aBmpEx( rImage.GetBitmapEx() ); - - aBmpEx.Rotate( nAngle10, COL_WHITE ); - - return Image( aBmpEx ); -} - -void Menu::SetItemImageAngle( sal_uInt16 nItemId, long nAngle10 ) -{ - size_t nPos; - MenuItemData* pData = pItemList->GetData( nItemId, nPos ); - - if ( pData ) - { - long nDeltaAngle = (nAngle10 - pData->nItemImageAngle) % 3600; - while( nDeltaAngle < 0 ) - nDeltaAngle += 3600; - - pData->nItemImageAngle = nAngle10; - if( nDeltaAngle && !!pData->aImage ) - pData->aImage = ImplRotImage( pData->aImage, nDeltaAngle ); - } -} - -static inline Image ImplMirrorImage( const Image& rImage ) -{ - Image aRet; - BitmapEx aBmpEx( rImage.GetBitmapEx() ); - - aBmpEx.Mirror( BmpMirrorFlags::Horizontal ); - - return Image( aBmpEx ); -} - -void Menu::SetItemImageMirrorMode( sal_uInt16 nItemId, bool bMirror ) -{ - size_t nPos; - MenuItemData* pData = pItemList->GetData( nItemId, nPos ); - - if ( pData ) - { - if( ( pData->bMirrorMode && ! bMirror ) || - ( ! pData->bMirrorMode && bMirror ) - ) - { - pData->bMirrorMode = bMirror; - if( !!pData->aImage ) - pData->aImage = ImplMirrorImage( pData->aImage ); - } - } -} - Image Menu::GetItemImage( sal_uInt16 nItemId ) const { MenuItemData* pData = pItemList->GetData( nItemId ); @@ -2750,12 +2695,6 @@ void MenuBar::SetMenuBarButtonHighlightHdl( sal_uInt16 nId, const Link<MenuBar:: pMenuWin->SetMenuBarButtonHighlightHdl(nId, rLink); } -Rectangle MenuBar::GetMenuBarButtonRectPixel( sal_uInt16 nId ) -{ - MenuBarWindow* pMenuWin = getMenuBarWindow(); - return pMenuWin ? pMenuWin->GetMenuBarButtonRectPixel(nId) : Rectangle(); -} - void MenuBar::RemoveMenuBarButton( sal_uInt16 nId ) { MenuBarWindow* pMenuWin = getMenuBarWindow(); @@ -2764,6 +2703,12 @@ void MenuBar::RemoveMenuBarButton( sal_uInt16 nId ) pMenuWin->RemoveMenuBarButton(nId); } +Rectangle MenuBar::GetMenuBarButtonRectPixel( sal_uInt16 nId ) +{ + MenuBarWindow* pMenuWin = getMenuBarWindow(); + return pMenuWin ? pMenuWin->GetMenuBarButtonRectPixel(nId) : Rectangle(); +} + bool MenuBar::HandleMenuButtonEvent( Menu *, sal_uInt16 i_nButtonId ) { MenuBarWindow* pMenuWin = getMenuBarWindow(); diff --git a/vcl/source/window/syschild.cxx b/vcl/source/window/syschild.cxx index 7f92c641127d..d6595038991b 100644 --- a/vcl/source/window/syschild.cxx +++ b/vcl/source/window/syschild.cxx @@ -162,39 +162,6 @@ void SystemChildWindow::EnableEraseBackground( bool bEnable ) mpWindowImpl->mpSysObj->EnableEraseBackground( bEnable ); } -void SystemChildWindow::ImplTestJavaException( void* pEnv ) -{ -#if HAVE_FEATURE_JAVA - JNIEnv* pJavaEnv = static_cast< JNIEnv* >( pEnv ); - jthrowable jtThrowable = pJavaEnv->ExceptionOccurred(); - - if( jtThrowable ) - { // is it a java exception ? -#if OSL_DEBUG_LEVEL > 1 - pJavaEnv->ExceptionDescribe(); -#endif // OSL_DEBUG_LEVEL > 1 - pJavaEnv->ExceptionClear(); - - jclass jcThrowable = pJavaEnv->FindClass("java/lang/Throwable"); - jmethodID jmThrowable_getMessage = pJavaEnv->GetMethodID(jcThrowable, "getMessage", "()Ljava/lang/String;"); - jstring jsMessage = static_cast<jstring>( pJavaEnv->CallObjectMethod(jtThrowable, jmThrowable_getMessage) ); - OUString ouMessage; - - if(jsMessage) - { - const jchar * jcMessage = pJavaEnv->GetStringChars(jsMessage, nullptr); - ouMessage = OUString( - reinterpret_cast<sal_Unicode const *>(jcMessage)); - pJavaEnv->ReleaseStringChars(jsMessage, jcMessage); - } - - throw uno::RuntimeException(ouMessage); - } -#else - (void)pEnv; -#endif // HAVE_FEATURE_JAVA -} - void SystemChildWindow::SetForwardKey( bool bEnable ) { if ( mpWindowImpl->mpSysObj ) diff --git a/vcl/unx/generic/gdi/cairotextrender.cxx b/vcl/unx/generic/gdi/cairotextrender.cxx index 62aeca15524d..513f5e58dc2e 100644 --- a/vcl/unx/generic/gdi/cairotextrender.cxx +++ b/vcl/unx/generic/gdi/cairotextrender.cxx @@ -119,23 +119,6 @@ void ServerFontInstance::HandleFontOptions() } CairoFontsCache::LRUFonts CairoFontsCache::maLRUFonts; -int CairoFontsCache::mnRefCount = 0; - -CairoFontsCache::CairoFontsCache() -{ - ++mnRefCount; -} - -CairoFontsCache::~CairoFontsCache() -{ - --mnRefCount; - if (!mnRefCount && !maLRUFonts.empty()) - { - LRUFonts::iterator aEnd = maLRUFonts.end(); - for (LRUFonts::iterator aI = maLRUFonts.begin(); aI != aEnd; ++aI) - cairo_font_face_destroy(static_cast<cairo_font_face_t*>(aI->first)); - } -} void CairoFontsCache::CacheFont(void *pFont, const CairoFontsCache::CacheId &rId) { diff --git a/vcl/unx/generic/glyphs/scrptrun.h b/vcl/unx/generic/glyphs/scrptrun.h index 2efcff4110ba..a13b65ffed70 100644 --- a/vcl/unx/generic/glyphs/scrptrun.h +++ b/vcl/unx/generic/glyphs/scrptrun.h @@ -60,12 +60,9 @@ struct ParenStackEntry class ScriptRun : public UObject { public: - ScriptRun(); ScriptRun(const UChar chars[], int32_t length); - ScriptRun(const UChar chars[], int32_t start, int32_t length); - void reset(); void reset(int32_t start, int32_t count); @@ -114,21 +111,11 @@ private: static const char fgClassID; }; -inline ScriptRun::ScriptRun() -{ - reset(NULL, 0, 0); -} - inline ScriptRun::ScriptRun(const UChar chars[], int32_t length) { reset(chars, 0, length); } -inline ScriptRun::ScriptRun(const UChar chars[], int32_t start, int32_t length) -{ - reset(chars, start, length); -} - inline int32_t ScriptRun::getScriptStart() { return scriptStart; |