Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
499a46c0
Kaydet (Commit)
499a46c0
authored
Tem 28, 2011
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: remove unused methods
üst
249802f6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
50 deletions
+0
-50
editwin.cxx
automation/source/miniapp/editwin.cxx
+0
-5
editwin.hxx
automation/source/miniapp/editwin.hxx
+0
-1
httprequest.cxx
automation/source/testtool/httprequest.cxx
+0
-24
httprequest.hxx
automation/source/testtool/httprequest.hxx
+0
-5
iderdll.hxx
basctl/inc/iderdll.hxx
+0
-1
iderdll.cxx
basctl/source/basicide/iderdll.cxx
+0
-14
No files found.
automation/source/miniapp/editwin.cxx
Dosyayı görüntüle @
499a46c0
...
@@ -59,11 +59,6 @@ GHEditWindow::GHEditWindow(Window * pParent, String aName, WinBits iWstyle)
...
@@ -59,11 +59,6 @@ GHEditWindow::GHEditWindow(Window * pParent, String aName, WinBits iWstyle)
SetText
(
aName
);
SetText
(
aName
);
}
}
void
GHEditWindow
::
Clear
()
{
aInhalt
.
SetText
(
String
());
}
void
GHEditWindow
::
AddText
(
String
aNew
,
sal_Bool
bMoveToEnd
)
void
GHEditWindow
::
AddText
(
String
aNew
,
sal_Bool
bMoveToEnd
)
{
{
String
aOld
=
aInhalt
.
GetText
();
String
aOld
=
aInhalt
.
GetText
();
...
...
automation/source/miniapp/editwin.hxx
Dosyayı görüntüle @
499a46c0
...
@@ -47,7 +47,6 @@ public:
...
@@ -47,7 +47,6 @@ public:
GHEditWindow
();
GHEditWindow
();
GHEditWindow
(
Window
*
pParent
,
String
aName
=
CUniString
(
"Neues Fenster"
),
WinBits
iWstyle
=
WB_STDWORK
);
GHEditWindow
(
Window
*
pParent
,
String
aName
=
CUniString
(
"Neues Fenster"
),
WinBits
iWstyle
=
WB_STDWORK
);
void
Clear
();
void
AddText
(
String
aNew
,
sal_Bool
bMoveToEnd
=
sal_True
);
void
AddText
(
String
aNew
,
sal_Bool
bMoveToEnd
=
sal_True
);
};
};
...
...
automation/source/testtool/httprequest.cxx
Dosyayı görüntüle @
499a46c0
...
@@ -50,15 +50,6 @@ HttpRequest::HttpRequest()
...
@@ -50,15 +50,6 @@ HttpRequest::HttpRequest()
{
{
}
}
HttpRequest
::~
HttpRequest
()
{
delete
pStream
;
pStream
=
NULL
;
delete
pOutSocket
;
pOutSocket
=
NULL
;
}
void
HttpRequest
::
SetRequest
(
rtl
::
OString
aHost
,
rtl
::
OString
aPath
,
sal_uInt16
nPort
)
void
HttpRequest
::
SetRequest
(
rtl
::
OString
aHost
,
rtl
::
OString
aPath
,
sal_uInt16
nPort
)
{
{
nStatus
=
HTTP_REQUEST_SET
;
nStatus
=
HTTP_REQUEST_SET
;
...
@@ -215,24 +206,9 @@ sal_Bool HttpRequest::IsItem( rtl::OString aItem, rtl::OString aLine )
...
@@ -215,24 +206,9 @@ sal_Bool HttpRequest::IsItem( rtl::OString aItem, rtl::OString aLine )
}
}
void
HttpRequest
::
Abort
()
{
if
(
pOutSocket
)
{
nStatus
=
HTTP_REQUEST_ERROR
;
pOutSocket
->
shutdown
();
pOutSocket
->
close
();
}
}
SvMemoryStream
*
HttpRequest
::
GetBody
()
SvMemoryStream
*
HttpRequest
::
GetBody
()
{
{
return
pStream
;
return
pStream
;
}
}
sal_uInt16
HttpRequest
::
GetStatus
()
{
return
nStatus
;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
automation/source/testtool/httprequest.hxx
Dosyayı görüntüle @
499a46c0
...
@@ -65,22 +65,17 @@ class HttpRequest
...
@@ -65,22 +65,17 @@ class HttpRequest
void
Init
();
void
Init
();
public
:
public
:
HttpRequest
();
HttpRequest
();
~
HttpRequest
();
void
SetRequest
(
rtl
::
OString
aHost
,
rtl
::
OString
aPath
,
sal_uInt16
nPort
);
void
SetRequest
(
rtl
::
OString
aHost
,
rtl
::
OString
aPath
,
sal_uInt16
nPort
);
void
SetProxy
(
rtl
::
OString
aHost
,
sal_uInt16
nPort
);
void
SetProxy
(
rtl
::
OString
aHost
,
sal_uInt16
nPort
);
sal_Bool
Execute
();
sal_Bool
Execute
();
void
Abort
();
rtl
::
OString
GetHeader
()
const
{
return
aHeader
;
}
rtl
::
OString
GetHeader
()
const
{
return
aHeader
;
}
SvMemoryStream
*
GetBody
();
SvMemoryStream
*
GetBody
();
rtl
::
OString
GetContentType
()
const
{
return
aContentType
;
}
rtl
::
OString
GetContentType
()
const
{
return
aContentType
;
}
sal_uInt16
GetResultId
()
const
{
return
nResultId
;
}
sal_uInt16
GetResultId
()
const
{
return
nResultId
;
}
sal_uInt16
GetStatus
();
};
};
#endif
#endif
...
...
basctl/inc/iderdll.hxx
Dosyayı görüntüle @
499a46c0
...
@@ -46,7 +46,6 @@ public:
...
@@ -46,7 +46,6 @@ public:
BasicIDEShell
*
GetShell
()
const
{
return
pShell
;
}
BasicIDEShell
*
GetShell
()
const
{
return
pShell
;
}
BasicIDEData
*
GetExtraData
();
BasicIDEData
*
GetExtraData
();
static
void
Init
();
static
void
Init
();
static
void
Exit
();
static
BasicIDEDLL
*
GetDLL
();
static
BasicIDEDLL
*
GetDLL
();
};
};
...
...
basctl/source/basicide/iderdll.cxx
Dosyayı görüntüle @
499a46c0
...
@@ -115,20 +115,6 @@ void BasicIDEDLL::Init()
...
@@ -115,20 +115,6 @@ void BasicIDEDLL::Init()
PropBrwMgr
::
RegisterChildWindow
();
PropBrwMgr
::
RegisterChildWindow
();
}
}
/*************************************************************************
|*
|* Deinitialisierung
|*
\************************************************************************/
void
BasicIDEDLL
::
Exit
()
{
// the BasicIDEModule must be destroyed
BasicIDEModule
**
ppShlPtr
=
(
BasicIDEModule
**
)
GetAppData
(
SHL_IDE
);
delete
(
*
ppShlPtr
);
(
*
ppShlPtr
)
=
NULL
;
DELETEZ
(
pBasicIDEDLL
);
}
BasicIDEData
*
BasicIDEDLL
::
GetExtraData
()
BasicIDEData
*
BasicIDEDLL
::
GetExtraData
()
{
{
if
(
!
pExtraData
)
if
(
!
pExtraData
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment